*{
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
body{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:#141414;
}
form{
    width: 500px;
    border-radius: 10px;
    padding: 30px 50px;
}
h1{
    color: white;
    text-align: center;
}
.text{
    width: 100%;
    padding: 15px;
    margin: 10px 0px;
    font-size: 18px;
    border-radius: 5px;
    outline: none;
    border: none;
}
.g-recaptcha{
    margin: 10px 0px;
}
.button{
    width: 100%;
    padding: 15px;
    border: none;
    background-color: orangered;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    margin: 10px 0px;
    cursor: pointer;
}
.button:hover{
    background-color: orange;
}