/* Label */
.form-label-custom {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #1d2746;
    margin-bottom: 10px;
}

/* Inputs */
.form-control.form-input {
    min-height: 48px;
    height: 48px;
    border: 1px solid #e7e8f3 !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    color: #1d2746 !important;
    font-size: 14px;
    padding: 12px 14px !important;
    background: #ffffff !important;
}

.form-control.form-input::placeholder {
    color: #a0a7bf !important;
    opacity: 1;
}

.form-control.form-input:focus {
    border-color: #b44cff !important;
    box-shadow: none !important;
    background: #ffffff !important;
    color: #1d2746 !important;
}

/* invalid state */
.form-control.form-input.is-invalid {
    border-color: #dc3545 !important;
    background-image: none !important;
    box-shadow: none !important;
}

.invalid-feedback {
    font-size: 13px;
    margin-top: 6px;
}

/* remember me */
.form-check-custom {
    color: #6f7896;
    font-size: 14px;
}

.form-check-custom .form-check-input {
    box-shadow: none !important;
    border-color: #d9dceb !important;
}

.form-check-custom .form-check-input:focus {
    box-shadow: none !important;
}

.form-check-custom .form-check-input:checked {
    background-color: #3f5efb;
    border-color: #3f5efb;
}

.form-check-custom .form-check-label {
    color: #6f7896;
    font-size: 14px;
    cursor: pointer;
}

/* forgot password */
.form-forgot-link {
    color: #3f5efb;
    font-size: 14px;
    font-weight: 500;
}

.form-forgot-link:hover {
    color: #b44cff;
}

/* responsive */
@media (max-width: 575.98px) {
    .form-meta-row {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start !important;
    }
}
