*,
*::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
}

body {
    font-family: "Proxima Nova",sans-serif;
    line-height: 1.1;
    margin: 0;
    overflow: hidden
}

.section {
    width: 600px;
    height: 150px;
    padding: 10px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}
.section .container {}
.section .container .bell {
    width: 100px;
    display: none;
}
.section .container h1 {
    text-align: center;
    margin-bottom: 5px;
    font-size: 19px;
}
.section .container .forma_wrap {}
.section .container .forma_wrap .forma {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}
.section .container .forma_wrap .forma .pre {
    text-align: center;
    font-size: 14px;
}
.section .container .forma_wrap .forma label {
    flex: 0 0 calc(50% - 10px);
    position: relative;
}
.section .container .forma_wrap .forma label input {
    width: 100%;
    border: 1px solid #cecece;
    height: 35px;
    padding-left: 15px;
    border-radius: 8px;
}
.section .container .forma_wrap .forma label input::placeholder {
  color:#c4c4c4
}
.section .container .forma_wrap .forma label input.error {
    border: 2px 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;
}
.section .container .forma_wrap .forma .btn {
    flex: 0 0 calc(50% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #a47c5b;
    color: #fff;
    height: 35px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 8px;
    font-size: 17px;
}
.section .container .forma_wrap .forma .btn:hover {
  opacity:0.8
}
.section .container .forma_wrap .forma .notice {
    font-size: 12px;
    flex: 0 0 100%;
    color: #b1b1b1;
    line-height: 1;
}
.section .container .forma_wrap .forma .notice a {
    color: #b1b1b1;
}
.section .container .forma_wrap div.success {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    align-content: center;
    text-align: center;
}
.section .container .forma_wrap div.error {
	color:red;
}