﻿html, body {
    width: 100%;
    height: 100vh;
    background-color: #afabab;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: Ubuntu-L, sans-serif;
    margin: 0px;
    padding: 0px;
}

.login-section {
    display: flex;
    justify-content: center;
}

.login-container {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5em 2.5em 5em 2.5em;
}

.login-img {
    margin-bottom: 10%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.login-img-w {
    height: 185px;
    width: 215px;
}

.login-principal {
    width: 300px;
    height: 250px;
    display: block;
    margin: 0 auto;
}

.user-container {
    opacity: 1.0;
    animation-name: login-animation;
    animation-duration: 0.6s;
}

@keyframes login-animation {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    60% {
        transform: scale(1.03);
    }

    100% {
        opacity: 1.0;
        transform: scale(1);
    }
}

.form-login {
    position: relative;
    margin-bottom: 15px;
}

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.login-card {
    padding: 30px 30px;
    background-image: url(../image/login/img_sin_fondo.png);
    background-size: cover;
    border-radius: 15px;
}

.input-icons {
    width: 100%;
    margin-bottom: 10px;
}

    .input-icons i {
        position: absolute;
    }

.icon {
    padding: 5px;
    min-width: 30px;
    text-align: center;
    color: #239d36;
}

.input-field {
    width: 100%;
    padding: 10px;
    text-align: center;
}

.login-card .btn {
    width: 100%;
    height: 40px;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    transition: all .3s;
    box-shadow: inset 0 -3em 3em rgba(0, 0, 0, 0.1),0 0 0 2px rgb(255, 255, 255),0.3em 0.3em 1em rgba(0, 0, 0, 0.4);
}

    .login-card .btn:hover {
        transition: all .5s;
    }

.login-card a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #005b0e;
}

    .login-card a:hover {
        color: #009b18;
    }

.form-field input {
    width: 100%;
    display: block;
    outline: none;
    border: none;
    background: none;
    color: #666;
    font-size: 12px;
}

.form-field {
    padding-left: 10px;
    box-shadow: inset 0 -3em 3em rgba(0, 0, 0, 0.1),0 0 0 2px rgb(255, 255, 255),0.3em 0.3em 1em rgba(0, 0, 0, 0.4);
    border-radius: 25px;
}

.btn-success {
    background: #188328;
}

    .btn-success:hover {
        background: #239d36;
    }

.btn-cancel {
    background: #83162f;
}

    .btn-cancel:hover {
        background: #c9254b;
    }
