/* Specific signup styles to match the uploaded design */

.signup-container {
    max-width: 800px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Background of inputs from the image */
.login-form .required {
    color: #FF4D4D;
    margin-left: 3px;
}
.form-group.persistent{padding-bottom: 20px;}

/* Password strength indicator styles */
.password-group {
    margin-bottom: 0px !important;
}

.password-group .form-control {
    border-radius: 4px 4px 0 0;
}

.password-strength {
    font-size: 11px;
    line-height: 11px;
    color: #7b7b7b;
    border: 1px solid #EAE6E2;
    padding: 7px;
    border-radius: 0 0 4px 4px;
    margin-top: -8px;
}

/* Checkbox adjustment */
.checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid #C4C2C0;
    accent-color: #000;
}

/* Button color matching the "Next" button in image */
.btn-primary.next-btn {
    background-color: #6C757D !important;
    color: var(--secondary-color) !important;
    width: 250px;
    border: 1px solid;
}

.btn-primary.next-btn:hover{ background-color:transparent !important;border: 1px solid var(--primary-color);color: #000 !important;}

.login-btn:hover {
    background-color: #5A6268 !important;
    border: none !important;
    color: var(--secondary-color) !important;
}

/* Footer link to login */
.signup-link {
    text-align: left !important;
    margin-top: 10px;
    padding: 0;
}

.signup-link a strong {
    font-weight: 700;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 0;
    }

    .login-btn {
        width: 100% !important;
    }

    .recaptcha-box {
        width: 100%;
        min-width: auto;
    }

    .next-btn {
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .form-row {
        gap: 15px;
    }
}