body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
    height: 100vh;
    background: linear-gradient(to bottom right, #3C6730, #082401);
    color: #dddddd;
    font-family: "Constantia", Arial, sans-serif;
}

.logo-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

.logo {
    height: 100px;
    width: auto;
}

.container {
    width: 300px;
    text-align: center;
}

.container h1 {
    margin-bottom: 0.5em;
    font-size: 48px;
    color: #dddddd;
    text-shadow: 6px 6px 8px rgba(0, 0, 0, 0.8);
    font-style: italic;
}

.container h2 {
    margin-bottom: 1em;
    font-size: 24px;
    color: #dddddd;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.5);
}

.form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1em;
}

.form-group label {
    min-width: 100px;
    text-align: right;
    margin-right: 5px;
    word-wrap: break-word;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"] {
    flex-grow: 1;
    padding: 0.5em;
    font-family: "Constantia", Arial, sans-serif;
}

.checkbox-group {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 5px;
}
/*
.form-group {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    margin-bottom: 1em;
}

.form-group label {
    text-align: right;
    word-wrap: break-word;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"],
.form-group input[type="captcha"] {
    width: 100%;
    padding: 0.5em;
    font-family: "Constantia", Arial, sans-serif;
}

.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 5px;
}

.checkbox-group label {
    display: block;
}
*/


.button {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(to bottom right, #FF7F00, #352408);
    color: #dddddd;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    border: none;
    border-radius: 4px;
    margin-left: 10px;
    font-family: "Constantia", Arial, sans-serif;
    font-size: 1.1em; /* Increase the font size */
}

.flashes {
    margin-bottom: 1em;
    color: #FF7F00; /* Set the color for flash messages, e.g., red */
    font-weight: bold; /* Add font weight to make the messages more prominent */
}

.footer {
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

.footer p {
    margin: 0;
    color: #dddddd;
}

.footer a,
.footer a:visited {
    color: #FF7F00; /* your preferred orange or gold color */
    text-decoration: underline;
}

.terms-link {
    color: #FF7F00;
}


@media (max-width: 600px) {
    .header .app-title {
        font-size: 48px;
    }

    .header .buttons {
        position: static;
        margin-top: 10px;
        justify-content: center;
    }
}

.flash-link {
    color: yellow;
    text-decoration: underline;
}

