/* ============================= */
/*  SIGN-IN PAGE — FINAL FIX     */
/* ============================= */

/* Background of entire auth section */
#auth {
    background: #FFF9F3 !important; /* Cream background */
}

/* Card background */
#auth .card {
    background: #ffffff !important; /* White clean card */
    color: #000 !important; 
    border-radius: 14px !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Labels */
#auth label {
    color: #000 !important;
    font-weight: 600 !important;
}

/* Headings */
#auth h3, 
#auth h4, 
#auth h2 {
    color: #1BA8A8 !important; /* Teal brand heading */
    font-weight: 700 !important;
}

/* Input fields */
#auth input.form-control {
    background-color: #f8f3ee !important; 
    color: #000 !important;
    border: 1px solid #dbcfc4 !important;
    border-radius: 8px !important;
}

#auth input.form-control::placeholder {
    color: #8a8a8a !important;
}

/* ============================= */
/*  LOGIN BUTTON (THE FIX YOU NEED) */
/* ============================= */

#auth .btn-primary {
    background-color: #FFFFFF !important;  /* WHITE BUTTON */
    color: #000 !important;                /* BLACK TEXT ALWAYS */
    border: 1px solid #1BA8A8 !important;  /* Teal outline */
    font-weight: 700 !important;
    border-radius: 10px !important;
}

#auth .btn-primary:hover {
    background-color: #f2f2f2 !important;  /* Light grey hover */
    color: #000 !important;                /* STILL black */
    border-color: #179393 !important;      /* Slightly darker teal */
}

/* ============================= */
/*  Links under the form         */
/* ============================= */
#auth a {
    color: #1BA8A8 !important; /* Teal links */
    font-weight: 600;
}

#auth a.text-dark {
    color: #000 !important; /* Force register link black */
}

#auth small {
    color: #555 !important;
}