@import url('/assets/css/components/nullstyle.css');
@import url(/assets/css/components/header.css);
@import url(/assets/css/components/footer.css);
@import url(/assets/css/components/modal.css);
@import url(/assets/css/components/cookies.css);
a{
    color: black;
}
body{
    font-family: 'Montserrat', serif;
    background: #F5F5F5;
}
.all-wrapper{
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    padding: 0px 140px;
    margin: 0px auto;
    min-height: 100%;
}
@media (max-width:1200px) {
    .all-wrapper{
        max-width: 1200px;
    }
}
@media (max-width:1100px) {
    .all-wrapper {
        padding: 30px;
    }
}

@media (max-width:830px) {
    .all-wrapper {
        padding: 20px;
    }
}
@media (max-width:640px) {
    .all-wrapper{
        padding: 10px;
    } 
}
.main {
    flex: 1 1 auto;
}
.unsub-form{
    display: flex;
    flex-direction: column;
    gap:20px;
    align-items: center;
    justify-content: center;
}

.unsub-form__body{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.unsub-form__body label{
    color: #0F5D5D;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-input{
    border-radius: 10px;
    background: #F3AC52;
    width: 300px;
    padding: 15px 110px 15px 30px;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-right: auto;
    margin-left: auto;
}

.form-input::-webkit-input-placeholder { /* WebKit browsers */
    color: #FFF;
}
.form-input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #FFF;
}
.form-input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #FFF
}

.submit__button{
    border-radius: 90px;
    background: #0F5D5D;
    padding: 10px 30px;
    color: var(--gray-6, #F2F2F2);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.unsub-form__message{
    margin-top: 20px;
    display: none;
    color: #0F5D5D;
    font-size: 16px;
}