/* Authentication Pages - Premium Design */
.auth-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    background: var(--bg-body);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.1), transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(252, 211, 77, 0.05), transparent 50%);
}

.auth-container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    margin-top: auto;
    margin-bottom: auto;
}

.auth-box {
    background: #161B28;
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-box .input-with-buttons {
    background: #0B0E17;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.auth-box .input-with-buttons input {
    padding: 16px;
    font-size: 15px;
    color: #9CA3AF;
}

.auth-box label {
    font-size: 12px;
    color: #6B7280;
    letter-spacing: 1px;
    margin-bottom: -5px;
}

.auth-logo {
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

.auth-box h2 {
    margin-bottom: 35px;
    font-size: 26px;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.auth-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.auth-btn {
    margin-top: 15px;
    width: 100%;
    background: #10B981;
    color: #022C22;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 12px;
    padding: 16px;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: 0.2s;
}

.auth-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

.auth-link {
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
}

.auth-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    transition: 0.2s;
}

.auth-link a:hover {
    color: var(--text-light);
    text-shadow: 0 0 10px var(--primary-glow);
}
