html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video,dl,dt,dd {
	font-size: 100%;
	font-style: normal;
	vertical-align: baseline;
	margin: 0;
	padding: 0;
	border: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}
audio, canvas, progress, video {
	display: inline-block;
	vertical-align: baseline
}
a { outline:none; text-decoration: none; color: var(--verde); }
a:hover{text-decoration: underline;}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

:focus {
    outline: 0;
    }

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;500;700&display=swap');

html{
	font-size: 16px;
}

body{
    font-family: 'Poppins', sans-serif;
    margin: 0;
	padding: 0;
    overflow: hidden;
}
:root{
	--verde: #5CAE34;
}

h1,h2, h3, h4,h6{
	color: var(--colorTitulos);
	line-height: 1.2;
    font-weight: 600;
}
h1{
	font-size: 1.4rem;
	margin-bottom:25px;
    color: var(--negro);
}
h2{
	font-size: 1.2rem;
	margin-bottom:25px;
    color: var(--negro);
}
h3{
	font-size: 1rem;
    color: var(--negro);
    margin-bottom: 25px;
}

li, p, th, td, dt, dd, span{
	font-size: .9rem;
	margin-bottom:20px;
	color: var(--colorParrafos);
}
ul{ list-style: none;}

label{
    font-size: .9rem;
    display: block;
    margin-bottom: 3px;
    color: #707070;
    padding-left: 20px;
    font-weight: 400;
}

input, select, textarea{
    display: block;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid #fff;
    background-color: #f1f1f1;
    color: #313131;
    width: 100%;
    resize: none;
    font-family: 'Poppins', sans-serif;
}
textarea{
    border-radius: 20px;
}
fieldset{
    padding-bottom: 20px;
    position: relative;
}
fieldset small{
    position: absolute;
    bottom: 0px;
    font-size: .8rem;
    left: 20px;
    color: #ff6060;
}
.error-ind{
    border-color:#ff6060;
}
.contenedorLogin{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 100vh;
}
.contenedorLogin .logo{
    margin-bottom: 30px;
    width: 170px;
}
.contenedorLogin .imagen{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}
.contenedorLogin .form{
    width: 400px;
    justify-self: center;
    text-align: center;
}
.contenedorLogin .form input{
    padding-left: 50px;
}

.contenedorLogin .form fieldset .icono{
    position: absolute;
    left: 20px;
    top: 14px;
}
.contenedorLogin h2{
    margin-bottom: 15px;
}
.contenedorLogin p{
    color: #5a5a5a;
    margin-bottom:30px;
}
.verContrasena{
    position: absolute;
    right: 30px;
    top: 17px;
}

.btnPrimary{
    padding: 5px 20px;
    color: #fff;
    background-color: var(--verde);
    text-decoration: none;
    border-radius: 100px;
    font-size: 0.9rem;
    border: 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.btnPrimary:hover{
    text-decoration: none;
}

.contenedorLogin .btnPrimary{
    padding: 10px 50px;
    width: max-content;
    margin: 0 auto;
    font-size: 1rem;
}
.enlace{
    margin-top: 100px;
    display: block;
}
.enlace img{
    vertical-align: middle;
    margin-right: 5px;
    width: 20px;
}