/* Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.captcha-container {
    margin: 2rem 0;
}

.hcaptcha-container {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.error-message {
    background: #fee;
    color: #c33;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    border: 1px solid #fcc;
}

.text-center {
    text-align: center;
}

.security-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #4CAF50;
    z-index: 1000;
}

.security-indicator.warning {
    background: #FF9800;
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

.security-indicator.error {
    background: #F44336;
    box-shadow: 0 0 10px rgba(244, 67, 54, 0.5);
}

/* Loading spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
} 