@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Questrial&display=swap');

body{
    font-family: 'Questrial', sans-serif;
    max-width: 600px;
    margin: 30px auto;
    background: rgb(236, 234, 236);
}

h1, h2{
    color: #333;
}
form{
    display: flex;
    flex-direction: column;
}

label{
    margin-bottom: 5px;
    font-weight: bold;
}
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea{
    padding: 8px;
    margin-bottom: 15px;
    border: 2px solid #8d736a;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"]{
    margin-left: 8px;
}

hr{
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ccc;
}

input[type="submit"]{
    padding: 10px;
    background-color: gray;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

input[type="submit"]:hover{
    background: #850b0b;
}