﻿* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --primary-green: #009A44;
    --secondary-green: #56C271;
    --light-green: #B0F78B;
    --heading-green: #70C943;
    --medium-green: #8EDD65;
    --pink-trademark: #DF1995;
    --primary-gray: #525252;
    --light-gray: #5E5E5E;
    --text-gray: #484848;
    --light-border: #F1F1F1;
    --medium-border: #E5E5E5;
    --menubtn-gray: #585858;
    --link-green: #56C271;
}

body, html {
    font-family: 'Urbanist', sans-serif !important;
    color: var(--primary-gray);
    height: 100%;
}

.inicio-sesion {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 1175px;
    min-height: 100vh;
    padding: 30px 0 30px 0
}

.contenedor-logo {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-top: 10px;
    max-width: 680px;
    padding-bottom: 10px;
    padding-top: 10px;
}

.contenedor-imagen-logo {
    align-items: center;
    display: flex;
    height: 60px;
    justify-content: center;
}

.contenedor-imagen-logo img {
    width: 300px;
}

.contenedor-frase {
    align-items: center;
    display: flex;
    height: 60px;
    justify-content: center;
}

.frase-con-forma {
    background-color: var(--primary-green);
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.35;
    padding: 15px;
}

.contenedor-secciones {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    box-shadow: 0px -1px 22px;
    margin-bottom: 20px;
    margin-top: 20px;
    max-width: 680px;
    padding-left: 33px;
    padding-right: 33px;
    width: 100%;
}

.contenedor-secciones-sin-box-shadow {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    margin-bottom: 20px;
    margin-top: 20px;
    max-width: 680px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
}

.contenedor-formulario {
    
}

.linea-separacion {
    border-radius: 1.5px;
    border-top: 3.5px solid #DF1995;
    height: 2px;
    margin: 0px auto 0px auto;
    max-width: 100px;
    padding: 0px;
}

.marco-inicio-sesion {
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
    max-width: 640px;
    width: 100%;
    position: relative;
}

.marco-tarjetas {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 680px;
    width: 100%;
}

.formulario-inicio-sesion {
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
    padding: 0 30px;
}

.titulo-corporativo {
    font-weight: 400;
    line-height: 33px;
    margin-bottom: 15px;
    margin-top: 22px;
    text-align: center;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: var(--primary-green);
}

.input-field {
    margin-top: 15px;
    margin-bottom: 15px;
}

.input-field input[type=text], input[type=password] {
    text-align: center;
}

.tarjeta {
    align-items: center;
    background-color: #ffffff;
    border: 1px solid var(--primary-green);
    border-radius: 4px;
    display: flex;
    height: auto;
    justify-content: center;
    margin-top: 10px;
    max-width: 600px;
    padding: 5px;
    width: 100%;
}

.tarjeta-titulo {
    align-items: center;
    color: var(--primary-green);
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 400;
    justify-content: center;
    line-height: 23px;
    max-width: 150px;
}

.imagen-tarjeta {
    max-width: 54px;
}

.tarjeta-detalle {
    align-items: center;
    display: flex;
    max-width: 300px;
}

.tarjeta-detalle-grande {
    align-items: center;
    display: flex;
    width: 100%
}

.contenedor-imagen-exterior {
    width: 100%;
    height: auto;
}

.imagen-exterior {
    width: 100%;
    height: auto;
}

.tarjeta-detalle a {
    color: var(--primary-gray);
    text-decoration: none;
}

.tarjeta-detalle a:hover {
    color: var(--pink-trademark);
}

.input-field a {
    color: var(--primary-green) !important;
}

.input-field a:hover {
    color: var(--link-green) !important;
}

.btn-primary {
    background-color: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
    border-radius: 6px !important;
    border-width: 0px;
    color: #fff !important;
    font-weight: bold;
    line-height: 1.35;
    margin:  auto;
    padding: 7px 16px;
    width: 100%;
}

.texto-centrado {
    text-align: center;
}

/*------------------------------------------------------------------
[ Responsive ]*/
/* Small devices (landscape phones, 576px and up) */ 
@media (max-width: 576px) {
    .contenedor-formulario {
        width: 100%
    }

    .contenedor-tarjetas {
        display: none;
    }

    .col-6 {
        flex: 0 0 auto;
        width: 100% !important;
    }

    .contenedor-logo {
        margin-bottom: 10px;
        margin-top: 10px;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-width: 680px;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .frase-con-forma {
        background-color: var(--primary-green);
        border-bottom-right-radius: 20px;
        border-top-left-radius: 20px;
        color: #ffffff;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.35;
        padding: 10px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
    .contenedor-formulario {
        width: 100%
    }

    .contenedor-tarjetas {
        display: none;
    }

    .col-6 {
        flex: 0 0 auto;
        width: 100% !important;
    }

    .contenedor-logo {
        margin-bottom: 10px;
        margin-top: 10px;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-width: 680px;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .frase-con-forma {
        background-color: var(--primary-green);
        border-bottom-right-radius: 20px;
        border-top-left-radius: 20px;
        color: #ffffff;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.35;
        padding: 10px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
    .contenedor-formulario {
        width: 100%
    }

    .contenedor-tarjetas {
        display: none;
    }

    .col-6 {
        flex: 0 0 auto;
        width: 90% !important;
    }

    .contenedor-logo {
        margin-bottom: 10px;
        margin-top: 10px;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-width: 680px;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .frase-con-forma {
        background-color: var(--primary-green);
        border-bottom-right-radius: 20px;
        border-top-left-radius: 20px;
        color: #ffffff;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.35;
        padding: 10px;
    }
}

/* X-Large devices (large desktops, 1200px and up) */ 
@media (max-width: 1200px) {
    .contenedor-logo {
        margin-bottom: 10px;
        margin-top: 10px;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-width: 680px;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .frase-con-forma {
        background-color: var(--primary-green);
        border-bottom-right-radius: 20px;
        border-top-left-radius: 20px;
        color: #ffffff;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.35;
        padding: 10px;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */ 
@media (min-width: 1400px) {
}