.auth-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #388e3c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

.auth-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    animation: slideUp 0.5s ease-out;
}

.auth-header {
    background: linear-gradient(135deg, #c0cc11 0%, #1ab82f 100%);
    color: white;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6f00 0%, #ffa726 50%, #ff6f00 100%);
}

.auth-logo {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 4px solid #ff6f00;
}

.auth-header h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.auth-header p {
    color: #ffccbc;
    font-size: 14px;
    font-weight: 500;
}

.auth-form {
    padding: 40px 32px;
}

.auth-form h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #d32f2f;
}

.auth-link {
    text-align: center;
    margin-top: 28px;
    color: #616161;
    font-size: 15px;
}

.auth-link button {
    background: none;
    border: none;
    color: #d32f2f;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-link button:hover {
    color: #b71c1c;
    text-decoration: underline;
}
.auth-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}