#icon{
    width: 30%;
}

a{
    text-decoration: none;
    font-weight: 400;
    display: inline-block;
    color: rgba(137, 15, 25, 1);
}

h2, h3{
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display:inline-block;
    margin: 30px 8px 30px 8px; 
    color: rgba(1, 160, 148, 1);
}

h2.inactive, h3.inactive{
    color: #cccccc;
}

h2.active, h3.active{
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}

body, html {
  background: linear-gradient(
    -20deg,
    rgba(1, 160, 148, 1),
    rgba(137, 15, 25, 1)
  );
  justify-content:center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Poppins", sans-serif;
  height: auto;
  width: 96vw;
}
    

.container{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

.formContainer{
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    position: relative;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.recoveryFooter{
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 10px 10px;
    text-align: center;
    padding: 25px;
    border-top: 1px solid #dce8f1;
}

input[type=submit]{
    background-color: rgba(137, 15, 25 ,.8);
    border: none;
    color: white;
    width: 50%;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    box-shadow: 0 10px 30px 0 rgba(95, 186, 233, 0.4);
    -webkit-box-shadow: 0 10px 30px 0 rgba(95, 186, 233, 0.4);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    margin: 5px 20px 40px 20px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

input[type=submit]:hover{
    background-color: rgba(137, 15, 25, 1);
}

input[type=submit]:active{
    transform: scale(0.95);
}

select{
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    width: 85%;
    margin: 5px;
    font-size: 16px;
    border: 2px solid #f6f6f6;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

input[type=text], input[type=password], textarea{
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    width: 85%;
    margin: 5px;
    font-size: 16px;
    border: 2px solid #f6f6f6;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

input[type=text]:focus, input[type=password]:focus, select:focus, textarea:focus{
    background-color: #fff;
    border-bottom: 2px solid rgba(137, 15, 25, 1);
}

input[type=text]::placeholder, input[type=password]::placeholder, textarea::placeholder{
    color: #0d0d0d;
}

*:focus{
    outline: none;
}

.recover:after{
    left: 0;
    display: block;
    bottom: -10px;
    width: 0;
    height: 2px;
    content: "";
    background-color: #56baed;
    transition: width 0.2s;
}

.recover:hover{
    color: #0d0d0d;
}

.recover:hover:after{
    width: 100%;
}

.Down{
    animation-name: Down;
    -webkit-animation-name: Down;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}

@-webkit-keyframes Down{
    0%{
        opacity: 0;
        -webkit-transform: translate 3d(0,-100%,0);
        transform: translate 3d(0,-100%,0);
    }
    100%{
        opacity: 1;
        -webkit-transform: none;
        transform:none;
    }
}

@keyframes Down{
    0%{
        opacity: 0;
        -webkit-transform: translate 3d(0,-100%,0);
        transform: translate 3d(0,-100%,0);
    }
    100%{
        opacity: 1;
        -webkit-transform: none;
        transform:none;
    }
}
@-webkit-keyframes fadeIn {from{opacity: 0;} to {opacity: 1;}}
@-moz-keyframes fadeIn {from{opacity: 0;} to {opacity: 1;}}
@keyframes fadeIn {from{opacity: 0;} to {opacity: 1;}}

.fadeIn{
    opacity: 0;
    animation: fadeIn ease-in 1;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}

.fadeIn.DownF{
    animation-delay: 0.4s;
}

.fadeIn.DownS{
    animation-delay: 0.6s;
}

.fadeIn.DownT{
    animation-delay: 0.8s;
}

.fadeIn.DownFo{
    animation-delay: 1s;
}
