section {
    margin: 50px auto;
}
.title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}
.title h1 {
    font-family: "Satisfy", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 5rem;
    color: #fdad54;
    text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 3px;
    text-align: center;
    margin-bottom: 2rem;
    -webkit-text-stroke: 0.01rem #fff;
}
.block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.5) 6px 6px 10px;
    border-radius: 5px;
    background: radial-gradient(circle,
    rgba(128, 187, 255, 1) 30%, 
    rgba(112, 167, 243, 1) 60%, 
    rgba(66, 130, 218, 1) 90%);
    padding: 3rem 0;
}
.text {
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 60%;
}
.text h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 2px;
    text-align: center;
    text-decoration: underline;
}
.text p {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: rgba(0, 0, 0, 0.6) 1px 1px 2px;
    text-align: center;
}
.form {
    width: 100%;
}
.form-box {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    margin: 50px auto;
}

.input-wrapper1 {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.input-wrapper {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0.5rem auto;
}
.input-wrapper .input {
    height: 2rem;
}
.checkbox-wrapper {
    display: flex;
    flex-direction: row;
}
.input {
    border-radius: 1rem;
}
.required {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    color: #292c2f;
}
.button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}
.button {
    width: 10rem;
    height: 3rem;
    border-radius: 2rem;
    font-family: "Barlow Condensed", sans-serif;
    background: #FFF;
    background: linear-gradient(192deg,
    rgba(255, 255, 255, 1) 3%, 
    rgba(253, 173, 84, 1) 95%);
    color: #292c2f;
    font-size: 1.2rem;
    text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 1px;
    padding: 0.6rem;
}

@media (max-width: 1200px) {
    .input-wrapper {
        width: 50%;
    }
}

@media (max-width: 800px) {
    .text  {
        width: 70%;
    }
    .input-wrapper {
        width: 70%;
    }
    .input-wrapper1 {
        width: 70%;
    }
    .title h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }
    .text h2 {
        font-size: 2rem;
    }
    .text p {
        font-size: 1.1rem;
        line-height: normal;
    }
    .required {
        font-size: 1.2rem;
    }
}

@media (max-width: 450px) {
    .text  {
        width: 80%;
    }
    .input-wrapper {
        width: 80%;
    }
    .input-wrapper1 {
        width: 80%;
    }
    .text h2 {
        font-size: 1.7rem;
    }
    .title h1 {
        margin-bottom: 0;
    }
}
