.logo {
    
}

.textLogin {
    font-family: Varela Round, sans-serif;
    color: #000;
    font-size: 25px;
    font-weight: bold;
}

.widget {
    width: 350px;
    height: 350px;
    border-radius: 20px;
    background:linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);

    position: relative;
    align-content:center;
}

.input {
    margin-right: 0;
    padding: 10px;
    border: none;
    font-size: 14px;
    font-family: Varela Round, sans-serif;
    border-radius: 35px;
    user-select: none;
    outline: none;

    position: relative;


}

.login-btn {
    font-family: Varela Round, sans-serif;
    background: #68d6eb;
    color: #1d1d1d;
    cursor: pointer;
    font-size: 20px;

    border: 0;
    transition: all 0.5s;
    border-radius: 35px;
    position: relative;
}

.login-btn:after {
     content: "\f2f6";
     font-family: Varela Round, sans-serif;
     font-weight: 400;
     position: absolute;
     left: 80%;
     top: 54%;
     right: 0;
     bottom: 0;
     opacity: 0;
     transform: translate(-50%, -50%);

 }

.login-btn:hover {
     background: #2b2bff;
     transition: all 0.5s;
     border-radius: 35px;
     box-shadow: 0px 6px 15px #0000ff61;
     color: #ffffff;
}

.login-btn:after {
    opacity: 1;
    transition: all 0.5s;
    color: #ffffff;

}



/* */

.flex { /*Flexbox for containers*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Varela Round, sans-serif;
    width: 100%;
}

.waves {
    position:relative;
    width: 100%;
    height:15vh;
    margin-bottom:-25px; /*Fix for safari gap*/
    min-height:100px;
    max-height:150px;
}

.content {
    position:relative;
    height:20vh;
    text-align:center;
    background-color: #40b1ff;
    bottom: -25px;
}

/* Animation */

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}
@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }
    100% {
        transform: translate3d(85px,0,0);
    }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height:40px;
        min-height:40px;
    }
    .content {
        height:20vh; /* 30 standard */
    }
    h1 {
        font-size:24px;
    }
    .widget {
        width: 300px;
        height: 350px;
        border-radius: 20px;
        background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
        position: relative;
        align-content: center;
        align-self: center;
    }
    .footer {
        visibility: hidden;
    }
}

/* App download*/

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-btn {
     width: 40%;
     max-width: 160px;
     color: #fff;
     margin: 20px 10px;
     text-align: left;
     border-radius: 5px;
     text-decoration: none;
     font-family: "Lucida Grande", sans-serif;
     font-size: 10px;
     text-transform: uppercase;
}

.blu {
    background-color: #101010;
    transition: background-color 0.25s linear;
}
.app-button:hover {
    background-color: #454545;
}

i {
    width: 20%;
    text-align: center;
    font-size: 28px;
    margin-right: 7px;
}

.big-txt {
    font-size: 17px;
    text-transform: capitalize;
}

.app-btn:hover {
    animation: rotate 0.7s ease-in-out both;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
    25% {
        transform: rotate(3deg) translate3d(0, 0, 0);
    }
    50% {
        transform: rotate(-3deg) translate3d(0, 0, 0);
    }
    75% {
        transform: rotate(1deg) translate3d(0, 0, 0);
    }
    100% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
}
@keyframes storm {
    0% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }
    25% {
        transform: translate3d(4px, 0, 0) translateZ(0);
    }
    50% {
        transform: translate3d(-3px, 0, 0) translateZ(0);
    }
    75% {
        transform: translate3d(2px, 0, 0) translateZ(0);
    }
    100% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }
}

#background-wrap {
    bottom: 0;
    left: 0;
    padding-top: 50px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: -1;
}

.cloud {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("cloud.png");
    animation: animate 60s linear infinite;
}

@keyframes animate {
    0%
    {
        background-position: 0px;
    }
    100%
    {
        background-position: 5440px;
    }

}