 body,
 html {
     min-height: 100%;
     height: 100%;
     background-image: url('/assets/img/banner/banner-1.jpg');
     background-repeat: no-repeat;
     background-size: cover;
 }
 
 ::selection {
     color: #fff;
     background-color: #F7AB10 !important;
 }
 
 .forms-container {
     position: absolute;
     width: 100%;
     margin: 0;
     font-family: Roboto, -apple-system, 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
     height: 100%;
 }
 
 .forms-section {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
 }
 
 .form-buttons-container {
     display: flex;
     justify-content: space-between;
     width: 100%;
 }
 
 .section-title {
     font-size: 32px;
     letter-spacing: 1px;
     color: #fff;
 }
 
 .forms {
     margin-top: 30px;
 }
 
 .form-wrapper {
     animation: hideLayer .3s ease-out forwards;
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     width: 70%;
 }
 
 .form-wrapper.is-active {
     animation: showLayer .3s ease-in forwards;
 }
 
 .active-button {
     color: #F7AB10 !important;
 }
 
 @keyframes showLayer {
     50% {
         z-index: 1;
     }
     100% {
         z-index: 1;
     }
 }
 
 @keyframes hideLayer {
     0% {
         z-index: 1;
     }
     49.999% {
         z-index: 1;
     }
 }
 
 .switcher {
     position: relative;
     cursor: pointer;
     display: inline-block;
     margin-right: auto;
     margin-left: auto;
     padding: 0;
     text-transform: uppercase;
     font-family: inherit;
     font-size: 16px;
     font-weight: bold;
     letter-spacing: .5px;
     color: #62a942;
     background-color: transparent;
     border: none;
     outline: none;
     transition: all .3s ease-out;
     z-index: 10;
 }
 
 .form-wrapper.is-active .switcher-login {
     color: #fff;
     transform: translateX(90px);
 }
 
 .form-wrapper.is-active .switcher-signup {
     color: #fff;
     transform: translateX(-90px);
 }
 
 .underline {
     position: absolute;
     bottom: -5px;
     left: 0;
     overflow: hidden;
     pointer-events: none;
     width: 100%;
     height: 2px;
 }
 
 .underline::before {
     content: '';
     position: absolute;
     top: 0;
     left: inherit;
     display: block;
     width: inherit;
     height: inherit;
     background-color: currentColor;
     transition: transform .2s ease-out;
 }
 
 .switcher-login .underline::before {
     transform: translateX(101%);
 }
 
 .switcher-signup .underline::before {
     transform: translateX(-101%);
 }
 
 .form-wrapper.is-active .underline::before {
     transform: translateX(0);
 }
 
 .form {
     overflow: hidden;
     min-width: 260px;
     margin-top: 200px;
     margin-bottom: 50px;
     padding: 30px 25px;
     border-radius: 5px;
     transform-origin: top;
 }
 
 .form-login {
     animation: hideLogin .3s ease-out forwards;
 }
 
 .form-wrapper.is-active .form-login {
     animation: showLogin .3s ease-in forwards;
 }
 
 @keyframes showLogin {
     0% {
         background: #d7e7f1;
         width: 100px;
         height: 250px;
         transform: translate(-50px, -25px);
     }
     50% {
         transform: translate(-25px, -25px);
     }
     100% {
         background-color: #fff;
         transform: translate(0, 0);
     }
 }
 
 @keyframes hideLogin {
     0% {
         background-color: #fff;
         transform: translate(0, 0);
     }
     50% {
         transform: translate(-25px, -25px);
     }
     100% {
         background: #d7e7f1;
         width: 100px;
         height: 250px;
         transform: translate(-50px, -25px);
     }
 }
 
 .form-signup {
     animation: hideSignup .3s ease-out forwards;
 }
 
 .form-wrapper.is-active .form-signup {
     animation: showSignup .3s ease-in forwards;
 }
 
 @keyframes showSignup {
     0% {
         background: #d7e7f1;
         transform: translate(-50px, -25px) scaleY(.8);
         width: 100px;
         height: 250px;
     }
     50% {
         transform: translate(-25px, -25px) scaleY(.8);
     }
     100% {
         background-color: #fff;
         transform: translate(0, 0) scaleY(1);
     }
 }
 
 @keyframes hideSignup {
     0% {
         background-color: #fff;
         transform: translate(0, 0) scaleY(1);
     }
     50% {
         transform: translate(-25px, -25px) scaleY(.8);
     }
     100% {
         background: #d7e7f1;
         width: 100px;
         height: 250px;
         transform: translate(-50px, -25px) scaleY(.8);
     }
 }
 
 .form fieldset {
     position: relative;
     opacity: 0;
     margin: 0;
     padding: 0;
     border: 0;
     transition: all .3s ease-out;
 }
 
 .form-login fieldset {
     transform: translateX(-50%);
 }
 
 .form-signup fieldset {
     transform: translateX(50%);
 }
 
 .form-wrapper.is-active fieldset {
     opacity: 1;
     transform: translateX(0);
     transition: opacity .4s ease-in, transform .35s ease-in;
 }
 
 .form legend {
     position: absolute;
     overflow: hidden;
     width: 1px;
     height: 1px;
     clip: rect(0 0 0 0);
 }
 
 .input-block {
     margin-bottom: 20px;
 }
 
 .input-block label {
     font-size: 14px;
     color: #1c1f1f;
 }
 
 .input-block input {
     display: block;
     width: 100%;
     margin-top: 8px;
     padding-right: 15px;
     padding-left: 15px;
     font-size: 16px;
     line-height: 40px;
     color: #0c0c0e;
     background: #eef9fe;
     border: 1px solid #cddbef;
     border-radius: 2px;
 }
 
 .form [type='submit'] {
     opacity: 0;
     display: block;
     min-width: 120px;
     margin: 30px auto 10px;
     font-size: 18px;
     line-height: 40px;
     border-radius: 25px;
     border: none;
     transition: all .3s ease-out;
 }
 
 .form-wrapper.is-active .form [type='submit'] {
     opacity: 1;
     transform: translateX(0);
     transition: all .4s ease-in;
 }
 
 .btn-login {
     color: #fbfdff;
     background: #d80c0c;
     transform: translateX(-30%);
 }
 
 .btn-signup {
     color: #f3efee;
     background: #e71111;
     box-shadow: inset 0 0 0 2px #a81f16;
     transform: translateX(30%);
 }