@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500;600&display=swap');
*{
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Nunito', sans-serif;
}

.container {
    max-width: 540px;
    margin: 50px auto;
    border-radius: 16px;
    background: #189fdb;
    padding: 60px 0px;
}

.thanks {
    margin-top: 50px;
}

h1 {
    margin-top: 30px;
    font-size: 32px;
}

img {
    height: auto;
    max-width: 225px;
    margin-top: 50px;
}

.success img {
    max-width: 100px;
    margin-bottom: 16px;
}

.success .btn {
    margin-top: 16px;
}

section {
    padding: 0 40px;
    text-align: center;
}

.form-group {
    margin-top: 30px;
    text-align: left;
}

.form-group label {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 50px;
    padding: 0px 10px;
    border: 1px solid #fff;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 18px;
    background: #fff;
    color: #000;
}

input:focus-visible,
select:focus-visible {
    outline: 0px;
}

button {
    width: 100%;
    border: none;
    border-radius: 8px;
    height: 50px;
    padding: 0px 10px;
    background: #262262;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 18px;
}

.mt-0 {
    margin-top: 0;
}

#error-container {
    display: none;
}

.error {
    color: #ffd525;
}

.hidden {
    opacity: 0;
    transition: opacity 1s;
    display: none;
}

.btn {
    display: inline-block;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    background: #262262;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.note {
    margin-top: 16px;
    font-size: 14px;
    text-align: left;
    color: #fff;
}

@media only screen and (max-width: 768.98px) {
    .form-group label {
        font-size: 16px;
        font-weight: 500;
    }

    .form-group input,
    .form-group select {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575.98px) {
    main {
        padding: 0px 15px;
    }
}