* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'GFS Didot', serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.logo {
    margin-bottom: 1.5rem;
}

.circle {
    width: 60px;
    height: 60px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.circle:hover {
    transform: rotate(360deg);
    background-color: #2c3e50;
    color: white;
    border-color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.button {
    display: inline-block;
    background-color: #1976d2;
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.button-outline {
    background-color: white;
    color: #1976d2;
    border: 2px solid #1976d2;
}

.button-outline:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.1);
}

.email-setup {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    animation: slideIn 0.8s ease-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.email-setup:hover {
    transform: translateY(-5px);
}

.email-setup h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.setup-instructions h3 {
    color: #1a1a1a;
    margin: 1.5rem 0 1rem;
}

.setup-instructions ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.setup-instructions li {
    margin-bottom: 0.5rem;
    color: #555;
}

.setup-instructions strong {
    color: #1a1a1a;
    margin-right: 0.5rem;
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .email-setup {
        padding: 1.5rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

footer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 0.9rem;
}

.admin-link {
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.admin-link:hover {
    opacity: 0.7;
} 
