/* public/css/login.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-container {
    background: rgba(26, 31, 58, 0.95);
    padding: 60px 50px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.login-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #4285F4 0%, #34a853 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

h1 {
    background: linear-gradient(135deg, #4caf50 0%, #2196f3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 700;
}

p {
    margin-bottom: 40px;
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.6;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #4285F4 0%, #357ae8 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.login-btn:hover {
    background: linear-gradient(135deg, #357ae8 0%, #2a5fc7 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(66, 133, 244, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

.google-icon {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.security-info {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #888;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-icon {
    font-size: 14px;
}

.footer-text {
    margin-top: 30px;
    font-size: 12px;
    color: #666;
}

@media (max-width: 600px) {
    .login-container {
        padding: 40px 30px;
    }
    h1 {
        font-size: 28px;
    }
    .login-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}