* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: white;
    font-family: 'Open Sans', sans-serif;
}
body {
    background-image: url('bg-shutdown.jpg');
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.shutdown {
    padding: 130px 0;
}

.container {
    max-width: 1120px;
    padding: 0 20px;
    margin: 0 auto;  
}

.shutdown__wrapper {
background-color: black;
padding-top: 39px;
border-radius: 5px;
}

.shutdown__logo {
    display: flex;
    flex-direction: row;
   margin-left: 89px;
   margin-bottom: 40px;
}
.shutdown__logo-text span {
 font-family: Lora;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 16px;
color: #FFFFFF;
}
.shutdown__logo-text {
font-family: 'Open Sans';
font-style: normal;
font-weight: 300;
font-size: 14px;
line-height: 118%;
color: #FFFFFF;
position: relative;
margin-left: 5px;
padding-left: 5px;
padding-top: 5px;
}
.shutdown__logo-text:before {
position: absolute;
left: -2px;
top: 5px;
content: '';
width: 2px;
height: 70%;
background-color: #FFFFFF;

}

.shutdown__title {
font-family: 'Oswald', sans-serif;
font-style: normal;
font-weight: 300;
font-size: 48px;
line-height: 100%;
text-align: center;
color: #FFFFFF;
margin-bottom: 11px;
}

.shutdown__descr {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 78px;
}

.shutdown__form-descr {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #CCCCCC; 
}


.shutdown__form {
    width: 75%;
    margin: 10px auto 0;
    padding-bottom: 59px;
}
.shutdown__contacts-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.shutdown__contacts-list input {
    border: none;
    width: 45%;
    border-bottom:1px solid #FFFFFF;
    padding: 14px 5px;
    background-color: black;
}
.shutdown__contacts-list input[type='email'] {
    width: 100%;
    margin-bottom: 20px;
}


.shutdown__form textarea {
    resize: none;
    width: 100%;
    border: none;
    padding: 14px 5px;
    border-bottom:1px solid #FFFFFF;
    background-color: black;
    overflow: auto;
    margin-bottom: 32px;
}

.shutdown__form-send {
display: block;
padding: 8px;
height: 56px;
width: 228px;
background: #FFFFFF;
color: black;
margin: 0 auto;
font-family: Open Sans;
font-style: normal;
font-weight: bold;
font-size: 16px;
line-height: 24px;
color: #2E2E2E;
position: relative;
border: none;
}
.shutdown__form-send:after {
    position: absolute;
    content: '';
   background-image: url('arr.svg');
   background-position: center center;
   background-repeat: no-repeat;
   height: 100%;
   width: 56px;
   right: -58px;
   top: 0px;
   background-color: white;
}

@media(max-width: 575px) {
   .shutdown__logo {
       margin: 0 auto;
   }
   .shutdown__wrapper {
       padding: 24px 15px 48px;
   }
   .shutdown__form {
       padding-bottom: 0;
       width: 100%;
   }
   .shutdown__contacts-list {
       flex-direction: column;
   }
   .shutdown__contacts-list input {
       width: 100%;
   }
   .shutdown__form-send {
       width: calc(100% - 56px);
       margin: 0;
   }
   .shutdown__logo-text:before {
       display: none;
   }
}