/* Signup card border + no shadow */
.signup-card {
    border: 2px solid #F2EFE7 !important; /* new border color */
}


/* Signup title */
.signup-title {
    font-size: 3rem; /* requested size */
    font-style: normal;
    font-weight: 500;
    color: #152349; /* moved from inline */
}


/* Signup subtitle paragraph */
.signup-subtitle {
    font-weight: 400;
    font-size: 18px;
    font-style: normal;
}


/* Signup input styling */
.signup-input {
    background-color: #F2EFE7;
    color: #A8A8A8;
    font-weight: 400;
    font-size: 12px;
}

/* optional: match placeholder color to text */
.signup-input::placeholder {
    color: #A8A8A8;
    opacity: 1; /* keep color consistent across browsers */
}


/* Label text (checkbox + other labels) */
.form-check-label,
label.form-label {
    font-weight: 500;
    font-size: 15px;
    font-style: normal; /* "regular" */
}

/* Checkbox background color */
.form-check-input {
    margin-left: 0.5rem;
    background-color: #F2EFE7;
    border-color: #F2EFE7;
}

.btn-signup-primary {
    background-color: #152349;
    border-color: #152349;
    color: #ffffff;
    border-radius: 0.25rem; /* xs */
}

/* Freeze all interactive states */
.btn-signup-primary:hover,
.btn-signup-primary:focus,
.btn-signup-primary:active,
.btn-signup-primary:disabled {
    background-color: #152349;
    border-color: #152349;
    color: #ffffff; /* no text color change */
    box-shadow: none; /* no focus ring/glow */
    outline: none;
}


/* Google outline button */
.btn-google-outline {
    font-size: 16px; /* requested font size */
    font-weight: 500; /* requested weight (Medium) */
    color: #916627; /* text color */
    border: 1px solid #916627; /* border color */
    background-color: transparent;
}

.form-check-input:checked {
    background-color: #152349 !important;
    border-color: #152349 !important;
    box-shadow: none !important;
}
.signup-card-pd {
    width: 38% !important;
    padding-top: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.form-check-input:focus {
    box-shadow: none !important;
    border-color: #152349 !important;
}

.oe_login_form, .oe_signup_form, .oe_reset_password_form {
    max-width: 100%;
    position: relative;
    margin: 50px auto;
}

@media (max-width: 767px) {
    .signup-title {
        font-size: 2rem !important;
         padding-top:24px;
    }

    .signup-card-pd {
        width: 100% !important;
        padding-top: 6px; !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}