@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap");

*{
    box-sizing: border-box;
}

body{
    font-family: 'Inter';
    height: 100vh;
    background-color:rgb(223, 223, 223);
    display: flex;
    align-items: center;
    justify-content: center;
}

form {
    background: white;
    padding: 60px;
    width: 550px;
    max-width: calc(100%-60px);
}

.form-element{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-element span{
    margin-bottom: 8px;
}

input,textarea {
    border: 1px solid rgb(223, 223, 223) ;
    line-height: 1;
    padding: 5px;
    border-radius: 5px;
}

.radio-buttons label{
    margin-bottom: 5px;
    cursor: pointer;
}

form button{
    width: 100%;
    padding: 10px;
    color: white;
    background:rgb(255, 70, 70) ;
    border-radius: 5px;
    border: none;
    font-size: 18px;
    cursor:pointer;
}