@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
.login-container {
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: zoomIn 1s ease forwards;
    animation-delay: .1s;
}

.login-logo{
    height: 125px;
    width: auto;
    opacity: 0;
    animation: zoomIn 1s ease forwards;
    animation-delay: .8s;
    
}
.login-fig-logo:hover{
    transform: rotateY(1turn);
}

.login-wrapper {
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 400px;
    padding: 40px 40px;
}
.login-form-container {
    width: 80%;

}

.login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.login-form-container h3 {
    font-size: 33px;
    font-weight: bold;
    color: #21bfcf;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 5px 0 10px 0;
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: .7s;

}
.login-form-container .login-form input {
    height: 40px;
    background: none;
    color: #fff;
    border-radius: 15px;
    width: 100%;
    margin: 8px 0;
    border-color: #21bfcf;
    padding: 0 10px ;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: .3s;
}

.login-form-container a {
    color: white;
    text-decoration: none;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: .10s;
    
}

.login-form-container .login-form button{
    background: #21bfcf;
    padding: 10px 22px;
    font-size: 20px;
    margin-top: 15px;
    border-color: #21bfcf;
    color: white;
    border-radius: 15px;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: .10s;
}
.login-form-container p {
    color: white;
    margin-top: 10px;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: .10s;
}

.login-form-container .navigate-btn{
    color: #21bfcf;
}
.login-form-container .navigate-btn:hover {
    color: #fff;
}


@keyframes slideIn {
    0%{
        transform: translateY(0);
        background-color: var(--white);
    }

    100%{
        transform: translateY(100%);
        background-color: var(--eerie-black-2);
    }
}
@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideTop {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}



@keyframes slideBottom {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


@keyframes zoomIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}



@keyframes floatImage {
    0% {
        transform: translateY(0);
        
    }
    50% {
        transform: translateY(-24px);
    
    }
    100% {
        transform: translateY(0);
    
    }
}


.check-box{
    display: flex;
    
    align-items: center;
    justify-content: '';
    font-size: 10px;
    
}

.check-box input{
    width: 10px;
}

