body {
    margin: 0;
    padding: 20px;
    font-family: "Montserrat", sans-serif;
    background-color: #f7f7f7;
    background-image: url('img/na.jpeg');
    background-size: cover; /* Scale the image to cover the whole element */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
}

.container {
    background-color: transparent;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 5px;
    margin-top: 300px;
}

h1 {
    font-size: 36px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    color: #f7f7f7;
}

.form {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    color: white;
    font-weight: bold;
    margin-bottom: 10px;

}

input {
    color: black;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
}