/* ESTILOS PARA LA PAGINA PRINCIPAL DEL LOGIN */

body {
    background: rgb(2, 116, 190);
    background: linear-gradient(
        90deg,
        rgba(2, 116, 190, 1) 0%,
        rgba(110, 193, 228, 1) 20%,
        rgba(255, 255, 255, 1) 67%
    );
    background-size: 100% 100%;
    /* background-repeat: no-repeat; */
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
}

#iosBlurBg {
    resize: horizontal;
    position: relative;
    border-top: 434px solid transparent;
    border-left: 548px solid rgba(0, 0, 0, 0.04);
    border-bottom: 209px solid transparent;
    background: linear-gradient(
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.1)
    );
}

#whiteBg {
    resize: horizontal;
    position: absolute;
    top: -410px;
    right: 0;
    border-top: 326px solid transparent;
    border-left: 403px solid rgba(255, 255, 255, 1);
    border-bottom: 245px solid transparent;
    border-right: 130px solid transparent;
    background: linear-gradient(
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 1)
    );
}

#bottomEnter {
    position: absolute;
    top: 285px;
    left: 44px;
    z-index: -2;
    border-top: 192px solid transparent;
    border-right: 300px solid #15224a;
    border-bottom: 150px solid transparent;
    transform: rotate(-2deg);
}

#bottomBlurBg {
    position: absolute;
    top: 293px;
    left: 66px;
    z-index: -1;
    border-top: 200px solid transparent;
    border-right: 267px solid rgba(69, 138, 182, 0.4);
    border-bottom: 120px solid transparent;
    transform: rotate(10deg);
}

.enterButton {
    position: absolute;
    top: 477px;
    left: 232px;
    width: 70px;
    height: 70px;
    text-align: center;
}

.text-white {
    color: #fff;
}

.enterText {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 300;
    font-family: "Open Sans", sans-serif;
}

.loginForm {
    position: absolute;
    top: 190px;
    left: 52px;
}

.title {
    font-weight: 300;
    font-size: 24px;
    line-height: 1;
}

.title span {
    font-weight: 800;
}

.title hr {
    width: 150px;
    border-width: 2px;
    border-color: #67e2fb;
    margin: 0;
}

hr.short {
    width: 50px;
    border-width: 2px;
    border-color: #67e2fb;
    float: left;
    margin: 0;
}

:focus {
    outline: none;
}

.col-3 {
    float: left;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
}
input {
    margin-top: 15px;
    font: 15px/24px "Open Sans", sans-serif;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
    width: 65%;
}

input::placeholder {
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 20px;
    font-weight: 300;
    padding-left: 15px;
}

.effect-2 {
    border: 0;
    padding: 7px 0;
    border-bottom: 1px solid #ccc;
}

.forget button {
    margin-top: 50px;
    border-radius: 0;
    color: #aaa;
    margin-left: 50px;
    font-weight: 700;
}

.logoHappy {
    position: relative;
    text-align: center;
}

.imgHappy img {
    display: block;
    width: 12%;
    height: auto;
    position: absolute;
    top: -150px;
    right: 10%;
    box-shadow: 1px 1px 1px 4px rgba(121, 121, 121, 0.596);
    border-radius: 50%;
    animation: moveImage 8s ease-in-out infinite;
}

@keyframes moveImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10vh);
    }
}