*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: sans-serif;
    background: #4E3B30;
    color: #E7F6F2;
}

form{
    min-height: 40rem;
    background: #6E5343;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 4rem;
    font-size: 2rem;
    gap: 2rem;
    border-radius: 5px;
}

h2{
    border-bottom: 0.2rem solid #98735D;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
}

form div{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input{
    display: block;
    width: 30ch;
    padding: 1rem 2rem;
    font-size: 1.3rem;
    border: 1px solid black;
    background: #E7F6F2;
}

textarea{
    height: 35ch;
    width: 100%;
    border: 1px solid black;
    padding: 1rem 2rem;
    resize: none;
    background: #E7F6F2;
}

.send{
    display: flex;
    align-items: center;
    justify-content: center;
}

button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20vh;
    height: 2.5rem;
    border-radius: 1.5rem;
    background: #98735D;
    border: 0.1rem solid white;
}

@media only screen and (max-width: 600px){
    .form{
        flex-direction: column;
    }
}

.back-button {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #6b5345;
    color: #fff;
    border-radius: 5px;
    font-size: 1.2rem; /* Increase the font size */
    margin: 10px 0;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out; /* Add a transform transition */
}

.back-button:hover {
    background-color: #967f72;
    transform: scale(1.1); /* Increase the size of the button when hovered */
}
  