@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #1e1f33;
    font-family: 'Roboto', sans-serif;
}

h1 {
    margin: 0;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 120px;
}

.logo {
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
}

.form {
    background-color: #f5f8fb;
    padding: 48px 32px;
    border-radius: 24px;
    width: 100%;
    margin-top: 30px;
}

.form__fields {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.form__fields input,
.form__fields select {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    width: 100%;
    border: 1px solid #a4afb4;
    border-radius: 12px;
    outline: none;
    padding-inline: unset;
    padding: 12px 20px;
    text-indent: unset;
}

.policy {
    margin: 30px 0 0 0;
    font-size: 14px;
}

.policy a {
    color: #ff312c;
}

.btn {
    background: #ff312c;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 80px;
    color: white;
    outline: none;
    border: none;
    transition: all .2s linear;
    width: 100%;
    max-width: 200px;
    margin-top: 30px;
}

.btn:hover {
    background: #cc2723;
}

@media(max-width: 991px) {
    h1 {
        font-size: 21px;
    }
    .container {
        margin-top: 30px;
    }
    .form__fields {
        grid-template-columns: repeat(1, 1fr);
    }
    .btn {
        max-width: 100%;
    }
}