body {
    font-family: "Roboto", sans-serif;
    background-color: #F2F4F4; /*#fff*/
}

p {
    color: #b3b3b3;
    font-weight: 300; 
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Roboto", sans-serif; 
}

.content {
    padding: 7rem 0; 
}

h2 {
    font-size: 20px; 
}

.half, .half .container > .row {
    height: 100vh;
    min-height: 500px; /* Antes 700px*/
}

@media (max-width: 991.98px) {
    .half .bg {
    height: 200px; } 
}

.half .contents {
    background: #f6f7fc;
}

.half .contents, .half .bg {
    width: 50%; 
}

@media (max-width: 1199.98px) {
    .half .contents, .half .bg {
    width: 100%; } 
}

.half .contents .form-control, .half .bg .form-control {
    /*border: none;*/
    border: 1px solid #000000;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    height: 45px;
    background: #E5E7E9; /* #E5E7E9 */
    color: black
}

.half .bg {
    background-size: cover;
    background-position: center; 
}

.half .btn-login {
    height: 45px;
    margin-top: 15px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    background-color: #1a0af3;
}

.half .btn-login:hover {
    background-color: #2012e5;
    box-shadow: 0 0 15px rgba(57, 51, 240, 0.6);
}

.half .btn-forgot {
    height: 45px;
    margin-top: 15px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    background-color: #083ff2;
}

.half .btn-forgot:hover {
    background-color: #053de3;
    box-shadow: 0 0 15px rgba(44, 59, 201, 0.6);
}

.half .btn-reset {
    height: 45px;
    margin-top: 15px;
    border-radius: 25px;
    color: black;
    font-weight: 600;
    background-color: #059a08;
}

.half .btn-reset:hover {
    background-color: #1b8108;
    box-shadow: 0 0 15px rgba(61, 245, 5, 0.6);
}

.half .primero{
    margin-top: 20px;
}

.half .segundo{
    margin-top: 20px;
}

.half .pass{
    margin-top: 10px;
    color: black
}

.half .pass-confirm{
    margin-top: 10px;
    color: black
}

.half .tercero{
    margin-top: 20px;
}

.half input::placeholder {
    color: black;
    opacity: 1;
}

/* Gatito */
#gatito {
    position: fixed;
    bottom: 550px;
    left: -150px;
    width: 140px;
    height: 100px;
    background: url("/containers/IMG/cat01.gif") no-repeat center/contain;
    z-index: 10;
}

/* Perrito */
#perrito {
    position: fixed;
    bottom: 35px;
    right: -150px;
    width: 200px;
    height: 160px;
    background: url("/containers/IMG/dog01.gif") no-repeat center/contain;
    z-index: 10;
}

button {
    padding: 8px 16px;
    background: gold;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: orange;
}

.mensaje {
    font-style: italic;
    font-size: 1.1em;
    color: #555;
}

/* EFECTO DIA INTERNACIONAL DE LA MUJER */
.sakura-container{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
    pointer-events:none;
    z-index:9999;
}

.sakura{
    position:absolute;
    width:14px;
    height:14px;
    border-radius: 70% 30% 70% 30%;
    opacity:0.9;
    animation: sakura-fall linear forwards;
}

@keyframes sakura-fall{

    0%{
        transform: translateY(-10vh) translateX(0px) rotate(0deg);
        opacity:0;
    }

    10%{
        opacity:1;
    }

    25%{
        transform: translateY(25vh) translateX(-30px) rotate(90deg);
    }

    50%{
        transform: translateY(50vh) translateX(30px) rotate(180deg);
    }

    75%{
        transform: translateY(75vh) translateX(-40px) rotate(270deg);
    }

    100%{
        transform: translateY(110vh) translateX(40px) rotate(360deg);
        opacity:0.8;
    }
}