.content {
    display: grid;
    justify-items: center;
    margin-left: 20px;
    margin-right: 20px;
}

main{
    margin-bottom: 0!important;
}

.help-text{
    text-align: center;
}

.content p {
    font-size: 15px;
}

form {
    padding: 25px 20px 20px 20px;
    background: #DAD9D9;
    border-radius: 10px;
    display: grid;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 50px;
    width: 280px;
}

form select {
    width: 230px;
    height: 32px;
    margin-top: 10px;
}

form label {
    font-size: 15px;
    padding-left: 5px;
}

.lower-info {
    max-width: 1075px;
}

.guide-link {
    margin-bottom: 15px;
}

.content a {
    color: #9D2235;
}

.no-show-label {
    position: absolute;
    left: -1000px;
    top: -1000px;
}

.center-select {
    display: grid;
    justify-content: center;
}

.button-grid {
    display: grid;
    justify-content: center;
}

.button-grid input{
    background: #9D2235;
    color: white;
    width: 145px;
    height: 45px;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid #9D2235;
    margin-top: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    outline: none;
}

.button-grid input:hover, .button-grid input:focus{
    background: #DAD9D9;
    color: black;
}

.button-grid input:focus:not(:focus-visible) {
    background: #9D2235;
    color: white;
}

.checkbox-div {
    margin-bottom: 20px;
    width: 230px;
}

.bottom-info {
    margin-bottom: 15px;
}

.disclaimer {
    margin-top: 80px;
    margin-bottom: 40px;
}

.disclaimer p{
    font-size: 13px!important;
}

h1 {
    margin-bottom: 40px;
}

@media only screen and (min-width: 375px) {
    form{
        width: 310px;
    }

    .content p{
        font-size: 16px;
    }
}

@media only screen and (min-width: 425px) {
    form{
        width: 350px;
    }
}

@media only screen and (min-width: 500px) {
    .lower-info{
        margin-left: 25px;
        margin-right: 25px;
    }
}

@media only screen and (min-width: 768px) {
    .lower-info{
        margin-top: 40px;
    }

    form{
        width: 425px;
        padding: 35px 20px 35px 20px;
    }

    .checkbox-div{
        margin-bottom: 25px;
        width: auto;
    }
}