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(--azul); }
a:hover{text-decoration: underline;}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

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


/** Estilos Generales **/


html{
	font-size: 16px;
}

body{
    font-family: 'Roboto', sans-serif;
    margin: 0;
	padding: 0;
    background: #f1f1f1;
}

:root{
	--verde: #5CAE34;
	--amarillo: #FF8000;
	--magenta: #C75E98;
	--azul: #004BA4;
    --negro: #2C2C2C;
}

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: 1px solid #ccc;
    background-color: transparent;
    color: #313131;
    width: 100%;
    resize: none;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;

}
textarea{
    border-radius: 20px;
}
fieldset{
    padding-bottom: 20px;
    position: relative;
}
.btnPrimary{
    text-transform: uppercase;
    color: #fff;
    background: var(--amarillo);
    padding: 15px 10px;
    font-size: 13px;
    font-weight: bold;
    display: block;
    width: max-content;
    border: none;
    cursor: pointer;
}

.contenido{
    background: #fff;
    border-radius: 10px;
    width: 400px;
    margin: 70px auto;
    padding: 30px 30px 50px;
}
.contenido .logo{
    display: block;
    margin: 0 auto 30px;
}
.contenido h3{
    text-align: center;
    color: var(--azul);
    font-size: 20px;
}
.contenido fieldset img{
    position: absolute;
    left: 20px;
    top: 13px;
    width: 16px;
}
.contenido input{
    padding-left: 50px;
    margin-bottom: 0;
}
.contenido .btnPrimary{
    width: 200px;
    margin: 0 auto;
}
.contenido a{
    display: block;
    text-align: center;
    margin-top: 30px;
}