body {
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    background-color: rgb(195, 195, 195);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.header {
    background-color: #f0f0f0;
    padding: 10px;
    display: flex;
    align-items: center;
    width: 100%; 
    height: 100px;
    position: fixed; 
    top: 0;
    left: 0;
    box-shadow: 0 7px 2px -2px rgba(162, 161, 161, 0.778);
}
 
.header div {
    display: flex;
    justify-content: center;
    width: 100%;
}

.header img {
    margin-right: auto; 
}

.header div img {
    margin: auto; 
}

.form-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 150px;
    margin-bottom: 150px;
}

.form-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: darkorange;
    margin-bottom: 20px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    margin-bottom: 5px;
    color: #333; 
}

input, select {
    padding: 10px;
    border-radius: 5px;
    background-color: #f5f5f5; 
    color: #333;
    font-weight: normal;
    border: solid 2px #ccc; 
    transition: background-color 0.3s, border 0.3s;
}

input:hover, select:hover {
    background-color: #eaeaea; 
    border-color: darkorange;
}

input[type="submit"], input[type="reset"] {
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: darkorange;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover, input[type="reset"]:hover {
    background-color: orange;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group select[multiple] {
    height: 100px;
}

.radio-group {
    display: flex;
    justify-content: space-between;
}

.form-group-inline {
    display: flex;
    justify-content: space-between;
}

.form-group-inline div {
    flex-basis: 48%;
}

.error {
    color: red;
    font-size: 0.9em;
    display: none;
}
