input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #e1e1e1;
  -webkit-text-fill-color: #6a7989 !important;
  -webkit-box-shadow: 0 0 0px 1000px #dcced2 inset;
  transition: background-color 5000s ease-in-out 0s;
}
:focus { 
  outline: none !important;
}
.clear{
    clear:both; 
}
*, *::before, *::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
a:hover, a:focus{
    text-decoration: none;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #acacad;
  opacity: 1; /* Firefox */
  text-transform: none;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #acacad;
  text-transform: none;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #acacad;
  text-transform: none;
}
:root {
  --borderWidthCheck: 7px;
  --heightCheck: 24px;
  --widthCheck: 12px;
  --borderColorCheck: #27DD1D;
  --borderWidthRemove: 7px;
  --heightRemove: 24px;
  --widthRemove: 24px;
  --borderColorRemove: #FA4506;
}
img {
  max-width: 100%;
}
a {
  color: #fff;
}
body {
  font-family: 'Montserrat', sans-serif;
  left: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.container {
  background-color: #F7F7F7;
  color: #5F5F5F;
  width: 300px;
  height: 600px;
  overflow: hidden;
  position: relative;
}
.cont-banner {
  position: relative;
  width: 300px;
  height: 250px;
  max-width: 100%;
}
.cont-banner img {
  max-height: 100%;
  max-width: 100%;
  position: relative;
  width: 100%;
}
.cards {
  background-color: #0058a3;
  width: 300px;
  height: 350px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card {
    position: absolute;
    width: 250px;
    height: 250px;
    background: #ffffff;
    top: calc(50% - 125px);
    left: calc(50% - 125px);
    box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 30%);
    border-radius: 3px;
    padding: 50px 20px 30px;
}
.card1 {
  z-index: 5;
}
.card2 {
  transform: rotate(3deg);
  opacity: 0.8;
  z-index: 4;
}
.card3 {
  transform: rotate(-3deg);
  opacity: 0.8;
  z-index: 3;
}
.card4 {
  transform: rotate(6deg);
  opacity: 0.8;
  z-index: 2;
}
.lastCard {
  opacity: 0;
}
.title {
    font-size: 20px;
    font-weight: bold;
}
.sutitle {
    font-size: 13px;
    margin: 2px 0;
    color: #aaa;
}
input[type="text"], input[type="email"], input[type="number"] {
    width: 100%;
    font-size: 15px;
    margin: 30px 0 5px;
    height: 40px;
    border-bottom: 2px solid #0058a3;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 2px;
    color: #555;
}
.valid {
    display: none;
    position: absolute;
    font-size: 11px;
    color: #b10119;
    font-weight: bold;
}
.data {
    margin: 10px 5px;
    font-size: 15px;
}
a.politica {
    text-align: center;
    color: #2a284d;
    text-decoration: none;
    font-size: 11px;
    display: block;
    font-weight: bold;
}
a.enviar {
    display: block;
    background-color: #0058a3;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    width: 100px;
    margin: 10px auto 0;
    padding: 5px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 3px;
}
.begin {
    animation: init-card ease 1.5s;
}
.card.left {
    animation: pass-card 1s;
    animation-fill-mode: forwards;
}
.arrow {
    font-family: monospace;
    color: #ffffff;
    align-items: center;
    font-weight: bold;
    width: 40px;
    height: 40px;
    text-align: center;
    background: #0058a3;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    font-size: 25px;
    box-shadow: 1px 2px 4px 0px rgb(140 140 140);
    padding-top: 4px;
    padding-left: 2px;
    margin-top: 15px;
}

@keyframes init-card {
    0% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes pass-card {
    100%{
        left: -350px;
        top: calc(70% - 175px);
        transform: rotate(90deg);
        opacity: 0;
    }
}