.wrapper{
    height: 351px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

.wrapper_content{
    overflow: hidden;
    width: 300px;
    height: 214px;
    padding: 20px 20px 25px 20px;
}
.title{
    font-size: 30px;
    margin: 0 0 20px 0;
}
.input_form{
    width: 274px;
    margin-bottom: 20px;
}
.wrapper_spinner{
    width: 280px;
    padding: 10px;
    background-color: #ffd80c;
    border-radius: 50px;
}
@keyframes spin {
  100% {
   transform: rotate(360deg);
  }
}
.spinner {
  width: 15px;
  height: 15px;
  border: 4px solid #fff;
  border-left-color: #fff;
  border-right-color: transparent;
  border-bottom-color: #fff;
  border-radius: 100%;
  animation: spin 1300ms infinite linear;
  margin: 0 auto;
}
