*,*::before,*::after{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
:focus,::after{
    outline: none;
}
a:focus,a::after{
    outline: none;
}
nav,footer,header,aside{
    display: block;
}
input,button,textarea{
    font-family: inherit;
}
input::-ms-clear{
    display: none;
}
button{
    cursor: pointer;
}
button::-moz-focus-inner{
    padding: 0;
    border: 0;
}
a,a:visited{
    text-decoration: none;
} 
a:hover{
    text-decoration: none;
}

img{
    vertical-align: top;
}
h1,h2,h3,h4,h5,h6{
    font-size: inherit;
    font-weight: inherit;
}

html,body{
    height: 100%;
    width: 100%;
    line-height: 1;
 }

body {
    margin: 0 auto;
    line-height: 1.4;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    background-color: rgba(51, 45, 45, 0.93);
    color: white;
    
} 
.main__page {
    width: 100%;
    height: 100%;
    padding: .9375rem;
  
}
.wrapper {
    margin: 2.25rem auto .875rem auto;
    background-color: rgb(63 8 6 / 93%);
    max-width: 50rem; 
    padding: 1.25rem; 
    border-radius: 1.25rem;
    box-shadow: 0 0 .9375rem snow;
}

@media (max-width: 768px) {
    .wrapper {
        max-width: 47.9375rem;
    } 
}
.title__text {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
}
.text__one {
    font-size: 1.875rem;
    text-align: center;
    border-bottom: 2px solid white;
    /*text-shadow: 1px 1px 2px black;*/
}
h1 {
    letter-spacing: .1875rem;
    padding: 1.25rem;
}
.text__two {
    text-align: center;
    padding: 0 .3125rem 0 0;
}
h3 {
    font-size: 1.125rem;
}
.form__text {
    max-width: 42.5rem;
    margin: 0 auto;
    padding: 1.875rem 0;
}
.form__group {
    padding: 0 0 1.875rem 0;
}
.form-label {
    font-size: 1.125rem;
    display: block;
    margin: 0 0 .6875rem 0;
}
.form__input {
    height: 3.125rem;
    font-size: 1.125rem;
    width: 100%;
    padding: 0 1.25rem;
    border-radius: .3125rem;
}
.form__input._error {
    box-shadow: 0 0 1.25rem white;
}
.form__control {
    height: 3.125rem;
    font-size: 1.125rem;
    width: 100%;
    padding: 0 1.25rem;
    border-radius: .3125rem;
}
.form__title {
    font-size: 1.125rem;
}
.form__select {
    height: 3.125rem;
    width: 100%;
    padding: 0 1.25rem;
    font-size: 1.125rem;
    border-radius: .3125rem;
    cursor: pointer;
}
.options__input {
    display: none;
}
.options__input:checked + .options__label::after {
    transform: scale(1);
}
.options__label {
    display: flex;
    font-size: 1.125rem;
    line-height: 170%;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.options__label::before {
    content: "";
    /*align-self: flex-start;*/
    flex: 0 0 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: white;
    margin: 0 .9375rem 0 0;
}
.options__label::after {
    transition: transform 0.5s ease 0s;
    content: "";
    position: absolute;
    top: .4875rem;
    left: .1625rem;
    width: .9375rem;
    height: .9375rem;
    background-color: rgb(63 8 6 / 93%);
    border-radius: 50%;
    transform: scale(0);
}

textarea.form__textarea {
    min-height: 7.5rem;
    max-height: 31.25rem;
    width: 100%;
    border-radius: .3125rem;
    resize: vertical;
    padding: 1.25rem;
}
.checkbox__input{
    display: none;
}
.checkbox__input:checked + .checkbox__label::after {
    transform: scale(1);
}
.checkbox__label {
    display: flex;
    font-size: 1.125rem;
    line-height: 1.7;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.checkbox__label::before {
    content: "";
    flex: 0 0 1.25rem;
    height: 1.25rem;
    border-radius: .1875rem;
    background-color: white;
    margin: 0 .9375rem 0 0;
}
.checkbox__label::after {
    transition: transform 0.5s ease 0s;
    content: "";
    position: absolute;
    top: .4875rem;
    left: .1625rem;
    width: .9375rem;
    height: .9375rem;
    background-color: rgb(63 8 6 / 93%);
    border-radius: .1875rem;
    transform: scale(0);
}
.form__button {
    width: 100%;
    min-height: 3.75rem;
    font-size: 1.3125rem;
    letter-spacing: .4375rem;
    font-weight: 600;
    border-radius: .4375rem;
    background-color: rgb(191 192 175);
    position: relative;
    cursor: pointer;
    color: rgb(63 8 6 / 93%);
    transition: background-color 0.5s ease 0s;
    position: relative;
    top: 0;
}
.form__button:hover {
    background-color: rgb(222, 218, 131);
}
.form__button:active {
    top: .3125rem;
    box-shadow: 0 0 .625rem wheat;
}