@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'poppins',sans-serif;
}

.login-form{
    position: relative;
    min-height: 100vh;
    z-index: 0;
    background: url('../img_sistema/background_farmacia.jpg');
    max-width: 100%;
    background-size: cover;
    padding: 30px;
    justify-content: center;
    display: grid;
    font-family: 'poppins',sans-serif;
    align-items: center;
}
.container{
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    text-align: center;
}

.lista {
    width: 375px;
    height: 475px;
    overflow-y: auto;
    background-color: #fff;
    color: #333;
    margin-right: 3px;
    text-align: center;
    padding-top: 2em;
    border-radius: 7px;
}

.login-form h2{
    width: 65%;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    background: linear-gradient(to right, #1c6c42, #26b268);
    font-family: 'poppins',sans-serif;
    padding-left: 30px;
}

.login-form h3{
    line-height: 40px;
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: 500;
    color: #1c6c42;
    text-align: center;
    font-style: italic;
}

.login-form h5{
    width: 75%;
    height:10%;
    text-align: left;
    font-size: 1rem;
    font-weight: 200;
    color: #fff;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    background: linear-gradient(to right, #1c6c42, #26b268);
    font-family: 'poppins',sans-serif;
    padding-left: 20px;
}

.login-form .main{
    position: relative;
    display: flex;
    margin: 30px 0;
}
.content{
    padding-top: 2em;
    padding-bottom: 2em;
    padding-right: 2em;
    flex-basis: 50%;
    background: #fff;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    text-align: center;
}
.form-img{
    flex-basis: 50%;
    background: linear-gradient(to right, #1c6c42, #26b268);
    background-size: cover;
    padding: 40px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: 2px 9px 49px -17px rgba(0,0,0,0.5);
    align-items: center;
    display: grid;
}
.form-img img{
    max-width: 100%;
    text-align: center;
}

.btn button{
    border-radius: 35px;
    width: 90%;
    cursor: pointer;
}

.btn:hover,
button:hover{
    background: linear-gradient(to right, #1c6c42, #26b268);
    transition: 0.5s ease;
    transform: translateY(-10%);
}
a{
    text-decoration: none;
    color: #0E4BB8;
}
.login-form form{
    margin: 30px 0;
}
.login-form input{
    width: 90%;
    outline:none;
    margin-bottom: 15px;
    font-stretch: 16px;
    color: #999;
    text-align: left;
    padding: 14px 20px;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    background: #fff;
    transition: 0.3s ease;
    border-bottom: 2px solid #c3c3c3;
    padding-bottom: 15px;
}
.login-form input:focus{
    background: transparent;
    border-bottom: 2px solid #299b5f;
}

.login-form button{
    font-size: 18px;
    color: #fff;
    width: 90%;
    background: linear-gradient(to right, #1c6c42, #26b268);
    border: none;
    padding: 14px 15px;
    font-weight: 600;
    transition: 0.3s ease;
    border-radius: 30px;
    cursor: pointer;
}
p.account a{
    color: #4e34b6;
}
p.account a:hover{
    text-decoration: underline;
}

a:visited {
    text-decoration: none;
    color: #0E4BB8;
}
@media(max-width:736px){
    .login-form .main{
        flex-direction: column;
    }
    .login-form form{
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .form-img{
        border-radius: 0;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        order: 2;
    }
    .content{
        order: 1;
        border-radius: 0;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

}