@charset "UTF-8";

/* ESPACIO FUENTES*/
@font-face {
    font-family: "merryWeather";
    src: url("../fonts/Merriweather-Light.ttf");
}

@font-face {
    font-family: "merryWeatherNegrita";
    src: url("../fonts/Merriweather-Bold.ttf");
}

@font-face {
    font-family: "merryWeatherItalic";
    src: url("../fonts/Merriweather-Italic.ttf");
}


/*BLOQUE ESTILOS GLOBAL   */

/*clases*/
.colorFondo {
  background: linear-gradient(to bottom right, antiquewhite, rgb(176, 101, 101));
 
}

.gradiente {
    background: linear-gradient(to bottom right, grey, antiquewhite);
}

.formulario {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 1px solid #ccc;
    padding: 20px;
}




.columnas {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  
}

.filas {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;


}

.espaciado {
    justify-content: space-between;
   /* vertical-align: middle;*/
}

.margenCuadros {
    border: 2px solid rgb(119, 119, 158);
    padding: 5px;

}

::placeholder {
    font-size: 1.00rem;
    color: brown;
    padding-left: 0.50rem;
    text-align: left;
}


.derecha {
    justify-content: flex-start;
}

.center{
justify-content: center;

}
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    background: linear-gradient(to bottom right, rgb(93, 90, 90), rgb(218, 174, 116));
    width: 50%;
    margin: 16px auto;

}

header {
    font-family: "merryWeatherNegrita";
    text-align: center;
    background-color: rgb(193, 193, 160);
    width: 100%;
    padding: 10px 0px 5px 0px;
    border: 1px solid white;
    box-shadow: 10px 10px 26px 0 rgba(20, 20, 20, 0.3);

}

h2 {
    font-family: "merryWeather";
    text-align: center;
}

h3,
h4 {
    font-family: "merryWeather";
    font-size: 0.8em;
    text-align: center;
}

h5 {
    text-align: center;
}

sup {
    color: red;
    font-size: 1.3rem;
}

section {
    position: center;
    padding: 30em;
    width: 100%;
    margin-bottom: 15em;

}

article fieldset h4 {
    padding: 1em;
}

span {
    font-family: "merryWeatherItalic";
    color: rgb(236, 13, 13);
}

label {
    display: inline-block;
    width: 30%;
    padding: 0.1rem 0.5rem;
}


input[type="submit"],
input[type="reset"] {

    font-size: 1.2em;
    color: rgb(114, 104, 104);
    width: 25%;
    border: 1px solid rgb(0, 0, 7);
    border-radius: 2px;
    text-align: center;
    background: linear-gradient(antiquewhite, rgb(141, 126, 126));
    cursor: pointer;
}

input[type="submit"]:hover,
input[type="reset"]:hover {
    color: white;
    background-color: rgb(132, 132, 157);
    cursor: pointer;
}

fieldset {
    padding: 0spx 0px 16px 0px;
    border: 1px solid transparent;

}

footer {
    width: 100%;
    padding-bottom: 16px;
    text-align: right;
    background-color: gray;
    color: antiquewhite;
    border-top: 2px solid rgb(161, 154, 154);
    position: fixed;
    bottom: 0px;
    left: 2px;

}