.auth {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-box {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    text-align: center;
}

.auth-box h2 {
    margin-bottom: 5px;
}

.auth-box input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 0.95rem;
}

.auth-box button {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #16a34a;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.auth-box button:hover {
    background: #15803d;
}

.auth-sub {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.auth-links {
    margin-top: 20px;
    font-size: 0.85rem;
}

.auth-links a {
    display: block;
    margin-top: 8px;
    color: #16a34a;
    text-decoration: none;
}