* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Arial', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

button, input, textarea {
    font-size: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

.alert {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0.25rem;
    font-size: 1rem;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 0;
    list-style: none;
    text-align: center;
}

.blur {
    filter: blur(5px);
    transition: filter 0.3s ease;
}

.hidden {
    display: none;
}

/* Shared button styles */
.cta-button {
    background-color: #D45A5A;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c04545;
}

a {
    color: #D45A5A;
}

em {
    font-style: italic;
}