body {
    font-family: Arial, sans-serif;
    background-color: #008000; /* Green background */
    background-image: url('/static/blue_ridge_image.jpg'); /* Forest background image */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.logo {
    display: block;
    margin: 0 auto 2rem auto; /* Center the logo horizontally and add space below it */
    max-width: 100%;
    height: auto;
}

h2 {
    text-align: center;
    color: #333; /* Ensure the text color is readable against the semi-transparent background */
}

p {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    color: #333; /* Darker color for text */
}

button {
    padding: 0.7rem;
    margin-top: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #333; /* Dark button */
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

button:hover {
    background-color: #555; /* Lighter dark on hover */
}

button:active {
    background-color: #111; /* Even darker on click */
}
