﻿/* Importing fonts from Google */
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');*/

/* Reseting */
/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}*/

html, body {
    width: 100%;
    height: 100vh;
}

body {
    background-image: url("../image/login/Back Log.png");
    background-size: cover;
}


.wrapper {
    max-width: 380px;
    min-height: 450px;
    margin: 6% auto;
    padding: 40px 30px 30px 30px;
    border-radius: 15px;
    background-color: white;
    -webkit-box-shadow: 0px 0px 21px -9px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 21px -9px rgba(0,0,0,1);
    box-shadow: 0px 0px 21px -9px rgba(0,0,0,1);
}

.logo {
    width: 100%;
    text-align: center;
}

    .logo img {
        width: 75%;
        /*object-fit: contain;*/
    }

.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 {
    width: 260px;
    margin-bottom: 10%;
    margin-left: auto;
    margin-right: auto;
}

.login-principal {
    width: 300px;
    height: 280px;
    display: block;
    margin: 0 auto;
}

.user-container {
    opacity: 1.0;
    animation-name: login-animation;
    animation-duration: 0.6s;
}

.login-card {
    padding: 30px 30px;
    background-image: url(../image/login/img_sin_fondo.png);
    background-size: cover;
    border-radius: 15px;
}

.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;
}

.wrapper .name {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1.3px;
    padding-left: 10px;
    color: #555;
}

.wrapper .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: rgb(233 233 233);
    /* font-size: 1.2rem;*/
    color: #666;
    border-radius: 20px;
}

.wrapper .form-field {
    padding-left: 10px;
    margin-bottom: 20px;
    border-radius: 15px;
    background-color: white;
}

.wrapper .btn {
    width: 60%;
    height: 40px;
    margin: auto auto;
    color: #fff;
    font-weight: bold;
    border-radius: 20px;
    letter-spacing: 1.5px;
    background: #239d36;
    transition: all .3s;
}

    .wrapper .btn:hover {
        background: #429714a8;
        transition: all .5s;
    }

.wrapper a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #03A9F4;
}

    .wrapper a:hover {
        color: #039BE5;
    }

#frmLogin {
    margin-top: 40px;
}

    #frmLogin .alert-dismissible {
        text-align: center;
        padding: 5px;
    }


.modal i {
    background-color: #387d12c9;
    color: white;
}

.modal input {
    text-align: left;
    padding-left: 50px;
}

@media(max-width: 380px) {
    .wrapper {
        margin: 30px 20px;
        padding: 40px 15px 15px 15px;
    }
}



.input-icons i {
    position: absolute;
}

.input-icons {
    width: 100%;
    margin-bottom: 10px;
}

.icon {
    padding: 10px;
    min-width: 40px;
    text-align: center;
    color: #239d36; /*#387d12c9;*/
}

.input-field {
    width: 100%;
    padding: 10px;
    text-align: center;
}



input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: green;
    background-color: rgb(233 233 233) !important;
    -webkit-box-shadow: 0 0 0px 1000px rgb(233 233 233) inset;
}

.fs-10 {
    font-size: 12px;
}

.fs-11 {
    font-size: 11px;
}

.btn-success {
    background: #188328;
}

    .btn-success:hover {
        background: #239d36;
    }

.btn-cancel {
    background: #83162f;
}

    .btn-cancel:hover {
        background: #c9254b;
    }

.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 {
        /*background: #239d36;*/
        transition: all .5s;
    }

.login-card a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #005b0e;
}

    .login-card a:hover {
        color: #009b18;
    }
