body {
    /*background-image: url('../../content/images/background_transparent.png');
    background-size:cover;
    background-repeat:no-repeat;*/
    font-family: Assistant, sans-serif;
    min-height: 90vh;
    /* background: #136a8a;*/
   /* background: #267871;*/
    background:#01788C;
}
.login {
    color: white;
    background:none;
    /*background: background: #136a8a;
    background: -webkit-linear-gradient(to right, #267871, #136a8a);
    background: linear-gradient(to right, #267871, #136a8a);*/
    margin: auto;
    /*  box-shadow: 
    0px 2px 10px rgba(0,0,0,0.2), 
    0px 10px 20px rgba(0,0,0,0.3), 
    0px 30px 60px 1px rgba(0,0,0,0.5);*/
    border-radius: 35px;
    padding: 20px 50px 50px 50px;
    max-width: 380px;
}

#logologin{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    margin-top: 0px;
}


.login .msg {
  text-align: center;
}

.login .form label{
    font-weight: bold;
}
    .login .form input[type=text].text {
        border: none;
        background-color: azure;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 10px;
        height: 50px;
        padding: 20px;
        /*  box-shadow: 0px 2px 0px 0px white;*/
        width: 100%;
        color: black;
        font-size: 1em;
        outline: none;
        margin-bottom: 20px;
        margin-top: 10px;
    }
.login .form .text::placeholder {
  color: #D3D3D3;
}

.login .form input[type=email].text {
    border: none;
    background-color: azure;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 10px;
    height: 50px;
    padding: 20px;
    /*  box-shadow: 0px 2px 0px 0px white;*/
    width: 100%;
    color: black;
    font-size: 1em;
    outline: none;
    margin-bottom: 20px;
    margin-top: 10px;
}

    .login .form .email::placeholder {
        color: #D3D3D3;
    }

    .login .form input[type=password].password {
        border: none;
        background-color: azure;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 10px;
        height: 50px;
        padding: 20px;
        /*  box-shadow: 0px 2px 0px 0px white;*/
        width: 100%;
        color: black;
        font-size: 1em;
        outline: none;
        margin-bottom: 20px;
        margin-top: 10px;
    }
.login .form .password::placeholder {
  color: #D3D3D3;
}
    .login .form .btn-login {
        background: none;
        color: white;
        border: 1.5px solid white;
        text-decoration: none;
        /*box-shadow: 0px 0px 0px 2px white;*/
        border-radius: 10px;
        padding: 5px 2em;
        transition: 0.5s;
        height: 50px;
        
        width: 100%;
    }
        .login .form .btn-login:hover {
            background: white;
            border: 1.5px solid #257773;
            color: #257773;
            transition: 0.5s;
        }

        .login .form .btn-login:focus {
            background: white;
            border: 1.5px solid #257773;
            color: #257773;
            transition: 0.5s;
        }

.login .forgot {
  text-decoration: none;
  color: white;
float: right;
margin-bottom: 0px;
}
footer {
  position: absolute;
  color: #136a8a;
  bottom: 10px;
  padding-left: 20px;
}
footer p {
  display: inline;
}
footer a {
  color: green;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer .heart {
  color: #B22222;
  font-size: 1.5em
}






/*CRISTMAS SPECIAL*/
.snowflake {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 1em;
    user-select: none;
    z-index: 1000;
    animation: fall linear infinite;
    overflow: hidden;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

/*.snow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

@keyframes sway {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }
}*/

/* Generate multiple snowflakes */
/*.snowflake:nth-child(1) {
    left: 10%;
    animation-duration: 10s;
    animation-delay: 0s;
    animation-name: fall, sway;
}

.snowflake:nth-child(2) {
    left: 20%;
    animation-duration: 12s;
    animation-delay: 2s;
    animation-name: fall, sway;
}

.snowflake:nth-child(3) {
    left: 30%;
    animation-duration: 8s;
    animation-delay: 4s;
    animation-name: fall, sway;
}

.snowflake:nth-child(4) {
    left: 40%;
    animation-duration: 14s;
    animation-delay: 6s;
    animation-name: fall, sway;
}

.snowflake:nth-child(5) {
    left: 50%;
    animation-duration: 10s;
    animation-delay: 8s;
    animation-name: fall, sway;
}

.snowflake:nth-child(6) {
    left: 60%;
    animation-duration: 12s;
    animation-delay: 10s;
    animation-name: fall, sway;
}

.snowflake:nth-child(7) {
    left: 70%;
    animation-duration: 8s;
    animation-delay: 12s;
    animation-name: fall, sway;
}

.snowflake:nth-child(8) {
    left: 80%;
    animation-duration: 14s;
    animation-delay: 14s;
    animation-name: fall, sway;
}

.snowflake:nth-child(9) {
    left: 90%;
    animation-duration: 10s;
    animation-delay: 16s;
    animation-name: fall, sway;
}

.snowflake:nth-child(10) {
    left: 100%;
    animation-duration: 12s;
    animation-delay: 18s;
    animation-name: fall, sway;
}*/
