body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.auth-box {
    background: linear-gradient(180deg, #800000 0%, #4a0000 100%); /* Premium Maroon Gradient */
    padding: 30px 20px;
    border-radius: 8px; 
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8); /* Thoda deep shadow aur premium feel ke liye */
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15); /* Halki si shine ke liye border */
}

.auth-box h2 {
    margin-top: 0;
    font-size: 22px;
    font-weight: bold;
}

.auth-box h3 {
    margin-bottom: 25px;
    font-size: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
}

.btn-green {
    background-color: #198754;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.btn-green:hover {
    background-color: #157347;
}

.auth-footer {
    margin-top: 20px;
    font-size: 14px;
}

.auth-footer a {
    color: #ffffff;
    text-decoration: none;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 15px;
}

.auth-options a {
    color: #ffffff;
    text-decoration: none;
}