
.auth-section {
    min-height: 100vh; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: 20px;
    background: transparent; 
}

.auth-container {
    width: 100%;
    max-width: 400px;
    background: rgba(5, 11, 18, 0.9);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(52, 152, 219, 0.3);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(52, 152, 219, 0.1);
    text-align: center;
}

.auth-container h2 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
}

.auth-form input:focus {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.3);
}

.auth-form .btn-primary {
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
}

.auth-footer {
    margin-top: 25px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.auth-footer a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}