body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    margin: 0;
    padding: 40px;
    background-image: url("background.png");
}

.form-container {
    background:rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: 20px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

label {
    display: block;
    margin-top: 15px;
    color: #555;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.submit-button {
    margin-top: 20px;
    text-align: center;
}

input[type="submit"] {
    background-color: #007BFF;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.required:after {
    content: "*";
    color: red;
    margin-left: 4px;
}

.hidden {
    display: none;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    HEIGHT: 100PX;
}

.logo-container img{
    height: 5em;
}

.logo-container h2{
    font-size: 5em;
}

