body {
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    color: #cfb8b8;;
    font-size: 2em;
    text-align: center;
    border-radius: 15px;
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 25%, #6b3e2a 50%, #4a2c1a 75%, #2c1810 100%);
    padding: 20px 0;
    margin: 20px auto;
    max-width: 900px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.header-avatar {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: #d4af37;
    padding: 4px;
    box-shadow: 
        0 0 0 3px rgba(212, 175, 55, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.6);
}

.header-avatar:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 0 3px rgba(212, 175, 55, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(212, 175, 55, 0.3);
}

.header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-brand {
    display: block;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.8em;
    font-weight: bold;
    color: #d4af37;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(212, 175, 55, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2);
    letter-spacing: 4px;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.header-subtitle {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 0.45em;
    font-weight: 300;
    color: #e8dcc0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* Add subtle glow effect on hover */
h1:hover .header-brand {
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(212, 175, 55, 0.5),
        0 0 30px rgba(212, 175, 55, 0.3);
    transition: text-shadow 0.3s ease;
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-text {
        align-items: center;
    }
    
    .header-avatar {
        width: 60px;
        height: 60px;
    }
    
    .header-brand {
        font-size: 1.5em;
        letter-spacing: 2px;
    }
}

h2 {
    font-size: 1.5em;
    text-align: center
}

button.submit_button {
    background-color: #98ada5;
    border: none;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
}