body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #233038ff;
    text-align: center;
    padding: 150px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header img {
    width: 200px;
    height: 200px;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    width: 300px;
}

form label{
    color: #233038ff;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
}

form label,
form input,
form textarea,
form button {
    display: block;
    margin-bottom: 10px;
    width: auto;
}
form input,
form textarea {
    border:1px solid rgb(212, 212, 212);
    border-radius: 5px;
    padding: 8px;
}

form textarea {
    height: 100px;
}

form button {
    background-color: #a0f1c6ff;
    color: #233038ff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 11px;
}

form button:hover {
    background-color: rgb(106, 160, 131);
}
h3 {
    color: #febb86ff;
    font-weight: 100;
}


@media only screen and (max-width: 767px) {
    body {
        padding: 50px 10px;
    }

}
