*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@font-face {
    font-family: 'Proxima Nova';
    src: url(../fonts/ProximaNova-Regular.eot);
    src: local('Proxima Nova Regular'),local('ProximaNova-Regular'),url('../fonts/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'),url(../fonts/ProximaNova-Regular.woff) format('woff'),url(../fonts/ProximaNova-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Proxima Nova';
    src: url(../fonts/ProximaNova-Bold.eot);
    src: local('Proxima Nova Bold'),local('ProximaNova-Bold'),url('../fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'),url(../fonts/ProximaNova-Bold.woff) format('woff'),url(../fonts/ProximaNova-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Proxima Nova';
    src: url(../fonts/ProximaNova-Semibold.eot);
    src: local('Proxima Nova Semibold'),local('ProximaNova-Semibold'),url('../fonts/ProximaNova-Semibold.eot?#iefix') format('embedded-opentype'),url(../fonts/ProximaNova-Semibold.woff) format('woff'),url(../fonts/ProximaNova-Semibold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Proxima Nova';
    src: url(../fonts/ProximaNova-Light.eot);
    src: local('Proxima Nova Light'),local('ProximaNova-Light'),url('../fonts/ProximaNova-Light.eot?#iefix') format('embedded-opentype'),url(../fonts/ProximaNova-Light.woff) format('woff'),url(../fonts/ProximaNova-Light.ttf) format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Proxima Nova';
    src: url(../fonts/ProximaNovaT-Thin.eot);
    src: local('Proxima NovaT Thin'),local('ProximaNovaT-Thin'),url('../fonts/ProximaNovaT-Thin.eot?#iefix') format('embedded-opentype'),url(../fonts/ProximaNovaT-Thin.woff) format('woff'),url(../fonts/ProximaNovaT-Thin.ttf) format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap
}

body {
    font-family: "Proxima Nova",sans-serif;
    line-height: 1.3;
    margin: 0;
    background: url(../img/bg.jpg) center no-repeat, rgb(0 0 0 / 34%);
    background-size: cover;
    background-blend-mode: overlay;
}

.head {
    background: rgb(23, 135, 182);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.head .logo {
    width: 200px;
}

.section {} 
.section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.section .container .forma_wrap {
    max-width: 960px;
    flex: 0 0 100%;
    padding: 20px;
    margin-top: 30px;
}
.section .container .forma_wrap .forma {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.section .container .forma_wrap .forma h1 {
    line-height: 1.1;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
    color: #ffae00;
    font-size: 36px;
}
.section .container .forma_wrap .forma .subtitle {
    font-size: 21px;
    margin: 0 0 30px;
    text-align: center;
    color: #fff;
}
.section .container .forma_wrap .forma label {
    flex: 0 0 calc(25% - 10px);
    margin-bottom: 18px;
    position: relative;
}
.section .container .forma_wrap .forma label input {
    width: 100%;
    height: 50px;
    padding-left: 15px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
}
.section .container .forma_wrap .forma label input::placeholder {
  color:#c4c4c4
}
.section .container .forma_wrap .forma label input.error {
    border: 1px solid red;
}
.section .container .forma_wrap .forma label .warning {
    background: red;
    color: #fff;
    position: absolute;
    font-size: 13px;
    padding: 0 7px;
    bottom: -5px;
    right: 0;
    border-radius: 2px;
}
.section .container .forma_wrap .forma .btn {
    flex: 0 0 calc(25% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffae00;
    color: #000;
    height: 50px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 3px;
    font-size: 20px;
}
.section .container .forma_wrap .forma .btn:hover {
  background: #ffc954;
}
.section .container .forma_wrap .forma .notice {
    font-size: 15px;
    flex: 0 0 100%;
    line-height: 1;
    margin-top: 6px;
    text-align: center;
    color: rgb(255 255 255 / 58%);
}
.section .container .forma_wrap .forma .notice a {color: rgb(255 255 255 / 58%);}
.section .container .forma_wrap div.success {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 335px;
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}
.section .container .forma_wrap div.error {
    text-align: center;
    color: red;
}
.section .container .logo {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    margin: 30px 0;
    padding: 0 10px;
}
.section .container .about {
    background: rgb(255 255 255 / 28%);
    max-width: 960px;
    flex: 0 0 100%;
    padding: 20px;
    border-radius: 10px;
}
.section .container .about .title {
    font-size: 25px;
    line-height: 1.1;
    text-align: center;
    color: #fff;
    font-weight: 600;
}
.section .container .about ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.section .container .about ul li {
    margin: 10px 0;
    text-align: center;
    font-size: 20px;
}
.section .container .about ul li a {
    color: #fff;
}
@media all and (max-width:728px) {
  .section .container .forma_wrap {
    margin-top: 0;
  }
  .section .container .forma_wrap .forma h1 {
    font-size: 22px;
  }
  .section .container .forma_wrap .forma .subtitle {
    font-size: 16px;
  }
  .section .container .forma_wrap .forma label {
    flex: 0 0 100%;
  }
  .section .container .forma_wrap .forma .btn {
    flex: 0 0 100%;
  }
  .section .container .about .title {
    font-size: 22px;
  }
  .section .container .about ul li {
    font-size: 16px;
  }
}