*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
.wrapper{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container{
    widht: 600px;
    max-width: 100%;
    background: #efefef;
    padding: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 41px -12px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 41px -12px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 41px -12px rgba(0,0,0,0.6);
}
form{
    margin-top: 30px;
}
.input{
    display: grid;
    grid-template-columns: 200px 1fr;
    margin-bottom: 15px;
}
.input input{
    padding: 5px 10px;
    border: 1px solid #ccc;
}
.input textarea{
    padding: 5px 10px;
    border: 1px solid #ccc;
}
.btn{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    padding: 15px 30px;
    background: black;
    color: white;
    border: 0px;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}
.btn:hover{
    background: #333;
    color: white;
}
.succes{
    padding: 5px 10px;
    background: #58ce60;
}