@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
    font-family: Poppins-Medium;
    src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url('../fonts/poppins/Poppins-SemiBold.ttf'); 
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    text-decoration: none;
}

body, html {
    background-image: url(../img/wallpaper.png);
    height: 100%;
    font-family: Poppins-Regular, sans-serif;
}

.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;  
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    /* background-color: rgb(221, 221, 221, .7); */
}

.wrap-login100 {
    width: 360px;
    background: #fff;
    min-height: 450px;
    max-height: 580px;
    padding: 40px 40px 40px 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;

    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.login-form{
    width: 360px;
    background: #fff;
    min-height: 450px;
    max-height: 580px;
    padding: 40px 40px 40px 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.login-form h1{
    display: block;
    font-family: Poppins-Bold;
    font-size: 30px;
    color: #43506C;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 60px;
}

.txtb{
    border-bottom: 2px solid #e3e4e6;
    position: relative;
    margin: 30px 0;
}

.txtb input{
    font-size: 14px;
    color: #43506c;
    border: none;
    width: 100%;
    outline: none;
    background: none;
    padding: 0 5px;
    height: 40px;
    font-family: Poppins-Regular, sans-serif;
}

.txtb span::before{
    content: attr(data-placeholder);
    position: absolute;
    top: 50%;
    left: 5px;
    color: #adadad;
    transform: translateY(-50%);
    z-index: -1;
    transition: .5s;
    font-size: 14px;
    font-family: Poppins-Regular, sans-serif;
}

.txtb span::after{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(120deg, #f8f9f9, #EF4B4C);
    transition: .5s;
    font-family: Poppins-Regular, sans-serif;
}

.focus + span::before{
    top: -5px;
}

.focus + span::after{
    width: 100%;
}

.logbtn{
    display: block;
    width: 100%;
    height: 50px;
    border: none;
    background: linear-gradient(120deg, #E9E9EB, #EF4B4C, #E9E9Eb);
    background-size: 200%;
    color: #F7F7F7;
    outline: none;
    cursor: pointer;
    transition: .5s;
    border-radius: 15px;
}

.logbtn:hover{
    background-position: right;
}

.bottom-text{
    /* margin-top: 60px;
    text-align: center;
    font-size: 13px; */
    position: absolute;
    display: block;
    font-size: 13px;
    bottom: 0;
    left: 0;
    margin-bottom: 20px;
    color: #43506C;
    text-align: center;
    width: 100%;
}

.alert{
    display: block;
    text-align: center;
    font-size: 13px;
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    background-color: #fff;
    color: #EF4B4C;
}

.alert.cool{
    color: #a5dc86;
}

@media (max-width: 576px) {
    .wrap-login100 {
        padding: 77px 15px 33px 15px;
    }
}

button i{
    animation:spin 2s linear infinite;
    font-size: 15px;
}

@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); transform:rotate(360deg); 
        transform: rotate(360deg); transform:rotate(360deg); 
    } 
}

.restrepo {
    width: 50%;
    height: auto;
    border-radius: 100%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}
}