/* Login Page Styles */

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066FF 0%, #8B5CF6 100%);
    padding: 20px;
}

.auth-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 48px;
    max-width: 440px;
    width: 100%;
    text-align: center;
}

.auth-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.auth-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}

.google-signin-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 24px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.google-signin-button:hover {
    background: #f9fafb;
    border-color: #0066FF;
    color: #0066FF;
}

.google-signin-button:active {
    transform: scale(0.98);
}

.google-signin-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.google-icon {
    width: 20px;
    height: 20px;
}

.auth-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.auth-footer a {
    color: #0066FF;
    text-decoration: none;
}

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

@media (max-width: 480px) {
    .auth-card {
        padding: 32px 24px;
    }

    .auth-title {
        font-size: 24px;
    }
}
