body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f2ed 0%, #741d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.container {
    background: rgba(255, 255, 255, 0.92);
    padding: 40px 32px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(116,29,45,0.10);
    text-align: center;
    max-width: 350px;
    width: 100%;
    border: 2px solid #4d2c1d;
}

.logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 24px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(77,44,29,0.10);
    background: #f8f2ed;
    padding: 8px;
    border: 2px solid #741d2d;
}

h1 {
    font-size: 2rem;
    margin: 0 0 12px 0;
    color: #741d2d;
    letter-spacing: 1px;
}

p {
    color: #4d2c1d;
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.spinner {
    margin: 0 auto;
    width: 36px;
    height: 36px;
    border: 4px solid #f8f2ed;
    border-top: 4px solid #741d2d;
    border-right: 4px solid #4d2c1d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-info {
    margin-bottom: 18px;
    margin-top: -10px;
}
.contact-info p {
    margin: 6px 0;
    font-size: 1rem;
    color: #4d2c1d;
}
.contact-info a {
    color: #741d2d;
    text-decoration: none;
    font-weight: 500;
    transition: text-decoration 0.2s;
}
.contact-info a:hover {
    text-decoration: underline;
} 