/* ===== AUTH PAGES ===== */

.login-container
.signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
}

.signup-container {
    display: flex;
    justify-content: center;
    padding-top: 60px;
}


.login-box,
.signup-box,
.forgot-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 380px;
    text-align: center;
}


.login-box h2,
.signup-box h2 {
    text-align: center;
}

.login-box input,
.signup-box input {
    width: 100%;
    padding: 10px;
    margin: 8px 0 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 12px;
    border: 1px solid #d1d5db;
}

.login-box h2 {
    color: black;
    margin-bottom: 5px;
}

.login-box p {
    color: black;
    margin-bottom: 20px;
}


.signup-box h2 {
    color: black;
    margin-bottom: 5px;
}

.signup-box p {
    color: black;
    margin-bottom: 20px;
}


.signup-btn:hover {
    opacity: .9;
}


.login-btn {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}
.signup-btn {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}
.small-text {
    margin-top: 15px;
    font-size: 14px;
    color: black;
}

.small-text a {
    color: black;
}


.login-btn:hover {
    opacity: .9;
}

.small-text {
    margin-top: 15px;
    font-size: 14px;
    color: black;
}

.small-text a {
    color: black;
}

.login-btn:hover {
    background: darkblue;
}

/* Center the text */
.small-text {
    text-align: center;
    font-size: 14px;
    margin: 8px 0;
    color: #555;
}

/* Style all links */
.small-text a {
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

/* Create account link */
.small-text a[href*="signup"] {
    color: #007bff;
}

.small-text a[href*="signup"]:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Driver login link */
.small-text a[href*="driver_login"] {
    color: #28a745;
}

.small-text a[href*="driver_login"]:hover {
    text-decoration: underline;
    color: #1e7e34;
}

/* Reset password link */
.small-text a[href*="password_reset"] {
    color: #dc3545;
}

.small-text a[href*="password_reset"]:hover {
    text-decoration: underline;
    color: #a71d2a;
}