/* auth.css */

/* Set page background */
body {
    background-color: #fffffd;
    font-family: 'Open Sans', sans-serif;
}

/* Centered card */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

/* Card Title */
.card-title {
    color: #191e3b;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 28px;
}

/* Input Fields */
.form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 10px 15px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #fdda32;
    box-shadow: 0 0 0 0.2rem rgba(253, 218, 50, 0.25);
}

/* Submit Button */
.btn-primary {
    background-color: #fdda32;
    border: none;
    color: #191e3b;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    color: #191e3b;
  background: #fdda32;;
  box-shadow: 0 0 0 calc(1*.0625rem) #191e3b,0 var(--animation-depth,.375em) 0 0 #191e3b;
}

/* Small links like 'Forgot Password' and 'Create an account' */
p.small a {
    color: #191e3b;
    font-weight: 600;
    text-decoration: none;
}

p.small a:hover {
    color: #191e3b;
    text-decoration-color: #fdda32;
    text-underline-offset: -0.15rem;
    text-decoration-skip-ink: none;
    text-decoration-line: underline;
    text-decoration-thickness: 0.3rem;
    transition: none;
}

/* Form spacing adjustments */
.form-group, .input-group {
    margin-bottom: 1rem;
}

/* Logo Styling */
.logo img {
    max-height: 60px;
}

/* Credit text */
.credits {
    color: #8d8d8d;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .card {
        padding: 1rem;
    }
}
