.input-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;

    label {
        margin-bottom: 0;
        color: var(--gray-400);
        pointer-events: none;
    }

    input {
        background-color: #fff;
        border-radius: 4px;
        padding: 0.75rem 1rem;
        border: 0;

        &::placeholder {
            color: #b4b4b4;
        }

        &:hover:not(:focus) {
            background-color: var(--gray-800);
        }

        &:focus {
            outline: 3px solid rgba(96, 226, 255, 0.3);
        }
    }
}

.is-invalid {
    border: solid 1px red !important;
}

.pass-box {
    position: relative;

    input {
        padding-right: 52px !important;
    }

    button {
        background-color: transparent;
        padding: 0.5rem;
        border: 0;
        position: absolute;
        bottom: 8px;
        right: 16px;
        margin: 0;
    }
}
