body{background-color: #131a23;display: flex;flex-direction: column;justify-content: center;align-items: center;}
h1{color: #ffffff;margin-top: 100px;}

.box1 input{
    background-color: #1e2a38;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    padding: 10px;
    margin: 10px 0;
    width: 300px;
    height: 40px;
}
.box2 input{
    background-color: #1e2a38;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    padding: 10px;
    margin: 10px 0;
    width: 300px;
    height: 40px;
}

.box1{display: flex;gap: 20px;}
.box2{display: flex;gap: 20px;}
textarea{
    background-color: #1e2a38;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    padding: 10px;
    margin-top: 10px;
    width: 640px;
    height: 150px;
    resize: none;
}
form{display: flex;flex-direction: column;align-items: center;}
button{
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    color: white;
    padding: 10px 20px;
    text-align: center;
    
    font-size: 16px;
    margin-top: 10px;
    
}

@media (max-width: 700px){
    .box1, .box2{flex-direction: column;gap: 0;}
    textarea{width: 300px;}
}