*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;

}
.container{
    width: 100%;
    height: 100vh;
    background: #202731;
    display: flex;
    align-items: center;
    justify-content: center;
} 
h3{
    color: #202731;
}
form{
    background: #5cc470;
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
}
form input, form textarea{
    border: 0;
    margin: 10px 0;
    padding: 20px;
    font-size: 16px;
    border-radius: 10px;
    background-color: #202731;
    color: #5cc470;
}
form button{
    padding: 15px;
    background: #0f131a;
    color: #5cc470;
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    transition-duration: 0.4s;

}
form button:hover {
    background-color:#bc675c;
    
}
