*, ::after, ::before {
    box-sizing: border-box;
}

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 500px;
    min-height: 100%;
    padding: 20px;
}
#formContent {
    margin-top: 10%;
    border-radius: 10px;
    background-color: #fff;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
    text-align: center;
}
.fadeIn {
    animation: fadeIn ease-in 1;
    animation-duration: 1s;
}
.logo_avt {
    padding: 20px 0 40px 0;
}
.fadeIn img {
    width: 64px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.3);
}
.fadeIn .second {
    animation-delay: 0.6s;
}
.fadeIn .third {
    animation-delay: 0.8s;
}
.fadeIn .fourth{
    animation-delay: 1s;
}

input {
    background-color: #f6f6f6;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    transition: all 0.5s ease-in-out;
    border-radius: 5px 5px 5px 5px;
}

input[type=text]:focus {
    background-color: #fff;
    border-bottom: 2px solid #5fbae9;
}
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
    background: linear-gradient(to right, rgba(252,70,107,0.7), rgba(63,94,251,0.7));
}

.login_submit {
    width: 200px;
    background: linear-gradient(to right, rgba(252,0,255,0.7), rgba(0,219,222,0.7));
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 40px 20px;
    transition: all 0.3s ease-in-out;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#formFooter {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    border-radius: 0 0 10px 10px;
}
#formFooter a {
    font-size: 16px;
    transition: all 0.5s;
    color: #0d0d0d;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}
