* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::placeholder {
    color: black;
}

.body-login {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* LOGIN SCREEN */
.inputWithIcon input[type="text"] {
    color: black;
}

.inputWithIcon {
    position: relative;
    margin: 0px 0px 5px 0px;
}

.inputWithIcon i {
    position: absolute;
    right: 8px;
    top: 6px;
    padding: 10px;
    cursor: pointer;
    font-size: large;
    color: lightslategray;
}

.container-ppal {
    display: flex;
}

form {
    width: 100%;
}

.texto-bienvenido {
    font-weight: bold; 
    color: #304b58; 
    font-size: 24px;
}

.form-login-control {
    width: 100%;
    height: 45px;
    padding: 10px 12px;
    font-size: 16px;
    color: black;
    margin: 3px 0;
    outline: none;
    border: none;
    box-shadow: 2px 2px 0px #516f7a;
    border-radius: 20px;
    text-align: center;
}

.form-login-control:active, .form-login-control:focus {
    outline: none !important;
    border: none !important;
}

.col-sm-7 {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

.loginscreen {
    background-image: url('../../Images/login-background.svg');
    background-position: center;
    background-repeat: no-repeat;
}

.login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 96vh;
}

.footer-login {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: white;
    font-size: 16px;
    padding: 0 2%;
    height: 4vh;
}

.producto-positiva {
    color: white; 
    font-size: 20px;
    margin-top: 40px; 
}

.login-form .form-fields {
    width: 67%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.app-logo-login {
    max-height: 300px;
    width: 300px;
}

.logo-positiva {
    width: 235px;
}

.login-submit {
    width: 100%;
    margin: 5px 0;
    height: 45px;
    color: white;
    background-color: rgb(75, 154, 73);
    border-radius: 20px !important;
    letter-spacing: 1px;
    font-size: 22px !important;
    border: none !important;
}

.btn-home, .btn-home:hover, .btn-home:focus {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding-left: 5px;
    padding-right: 5px;
}

.btn:active, .btn:focus, .login-submit:active {
    outline: none !important;
    border: none !important;
}
/* FIN */

/* Media querie para tamaņos hasta 768px (tablets) */
@media screen and (max-width:768px) {
    .col-sm-5 {
        width: 60% !important;
    }
    .login-form .form-fields {
        flex-direction: column;
        width: 80%;
    }
    .btn-home, .btn-home:hover {
        font-size: 15px;
        text-decoration: none;
    }
    .app-logo-login {
        max-height: 225px;
        width: 225px;
    }
    .logo-positiva {
        width: 250px;
    }
}

/* Media querie para tamaņos hasta 414px (iphone's) */
@media screen and (max-width:414px) {
    .col-sm-5 {
        width: 100% !important;
    }
    .loginscreen {
        background: none;
    }
    .texto-bienvenido {
        font-size: 20px;
    }
    .btn-home, .btn-home:hover {
        font-size: 15px;
        text-decoration: none;
    }
    .producto-positiva {
        font-size: 18px;
    }
    .app-logo-login {
        max-height: 225px;
        width: 225px;
    }
    .logo-positiva {
        width: 210px;
    }
    .login-submit {
        font-size: 20px !important;
    }
}

/* Media querie para tamaņos hasta 320px (celulares) */
@media screen and (max-width:320px) {
    .col-sm-5 {
        width: 100% !important;
    }
    .loginscreen {
        background: none;
    }
    .login-form .form-fields {
        width: 85%;
    }
    .texto-bienvenido {
        font-size: 18px;
    }
    .btn-home, .btn-home:hover {
        font-size: 16px;
        text-decoration: none;
    }
    .producto-positiva {
        font-size: 15px;
        margin-top: 20px;
    }
    .app-logo-login {
        max-height: 175px;
        width: 175px;
    }
    .logo-positiva {
        width: 175px;
    }
}

/* Media querie para alturas de maximo 625px (resoluciones de portatiles de 14') */
@media screen and (max-height: 625px) {
    .app-logo-login {
        width: 50%;
    }
    .texto-bienvenido {
        font-size: 18px;
    }
    .login-form .form-field {
        width: 65%;
    }
    .btn-home, .btn-home:active, .btn-home:hover {
        font-size: 15px;
    }
    .producto-positiva {
        font-size: 16px;
    }
    .logo-positiva {
        width: 200px;
    }
    .login-submit {
        font-size: 18px !important;
    }
}