.login-items h2{
    color: #000;
    font-size: 25px;
}
.login-items i{
    color: #000;
    font-size: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.login-items{
    border-radius: 0px;
    margin: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgb(255, 255, 255);
    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.login-items:hover{

    background-color: rgb(255, 255, 255);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.btn-white{
    color: #286090;
    background-color: #fff;
    border-color: #fff;
    border-radius: 0px;
    border-color: #fff;
    border-radius: 21px;
    padding-top: 9px;
    padding-bottom: 9px;
    transition: all 0.3s ease-in-out 0s;
    font-family: 'Montserrat', sans-serif;
}
.btn-white:hover{
    -webkit-box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}
.text-automatic img{
    max-width: 40%;
    margin-top: auto;
}
.text-automatic {  
    /* This section calls the slideInFromLeft animation we defined above */
    animation: 1s ease-out 0s 1 slideInFromLeft;
}
.img-woman{
    animation: 1s ease-out 0s 1 slideInFromRigth;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes slideInFromRigth {
    0% {
        transform: translateX(-180%);
    }
    100% {
        transform: translateX(0);
    }
}

@media only screen and (max-width: 768px) {
    .text-automatic {
        animation: 1s ease-out 0s 1 slideInFromLeft;
        text-align: center;
    }
    .img-woman img{
        max-width: 100%;
    }
}