/* Reset and basic styles */
body, h1, h2, p, input, button {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f7f7f7;
}

header, footer {
    background-color: #820054;
    color: white;
    text-align: center;
    padding: 15px;
}

header h1 {
    margin-bottom: 5px;
    font-size: 1.8em;
}

header p {
    font-size: 1em;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

#auth-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px; /* Add space below the form */
}

#auth-container input {
    width: 80%;
    max-width: 300px;
    padding: 10px 12px;
    margin: 0 auto 15px;
    display: block;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.button-group {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.button {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.primary-button {
    background-color: #820054;
    color: white;
}

.primary-button:hover {
    background-color: #a00068;
}

.secondary-button {
    background-color: transparent;
    color: #820054;
    border: 2px solid #820054;
}

.secondary-button:hover {
    background-color: #820054;
    color: white;
}

.error-message {
    color: red;
    font-size: 0.9em;
    min-height: 20px;
    margin-top: 10px;
}

#blurb-container {
    max-width: 600px;
    text-align: center;
    padding: 20px;
}

#blurb-container h2 {
    margin-bottom: 10px;
    color: #820054;
}

#blurb-container p {
    font-size: 1em;
    color: #333;
}

footer {
    font-size: 0.9em;
}