body{
    background-color: #F5EBDC;
}

.privacy-notice {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #555;
    text-align: center;
}

/* Form Container */
#form {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Form Inputs */
#form input[type="text"],
#form input[type="email"],
#form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}


/* Textarea */
#form textarea {
    height: 100px;
    resize: none;
}

/* Submit Button */
#form button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #D62400;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#form button[type="submit"]:hover {
    background-color: #ff2a00;
}

/* Privacy Notice */
.privacy-notice {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #555;
    text-align: center;
}


.select{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

textarea{
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

.feedback-container{
    display: flex;
    flex-direction: row;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.text-contatiner{
    width: 100%;
    margin: auto;
    margin-left: 20%;
    margin-top: 50px;
    text-align: left;
    word-wrap: break-word;
}

.form-container {
    margin: auto;
    width: 100%;
    margin-right: 10%;

}

@media screen and (max-width: 800px) {
    .feedback-container {
        flex-direction: column;
    }
    .text-contatiner {
        margin-left: 1%;
    }
    .form-container {
        margin-right: 0;
    }
    h1 {
        margin-left: 0;
    }
    .text{
        margin-left: 0%;
        margin-right: 0%;
    }
}

.text{
    font-size: 1.2rem;
    color: #333;
    text-align: left;
}

h1{
    color: #555;
}

