:root {
    --claro: #FFFFE9;
    --verde: #114E38;
    --verdeClaro: #DADFB9;
    --amarilloVerde: #76A636;
    --blanco: white;
    --texto: 'Montserrat', sans-serif;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

body {
    font-size: 1.6 rem;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

p {
    font-size: 1rem;
}

/*Estilos golbales*/

h1,
h2,
h3 {
    font-family: var(--texto);
}

p,
a {
    font-family: var(--texto);
}

.contenedor {
    margin: 0 auto;
    max-width: 120rem;
    width: 95%;
}

/*Encabezado*/

.encabezado {
    background-image: url(../img/fondo\ con\ logo.jpg);
    height: 100vh;
    min-height: 70rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.encabezado::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: -1;
}

.contenido-navegacion {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: var(--verde);
    box-shadow: 10px 10px 16px -6px var(--verdeClaro);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 12px;
    margin-right: 10px;
}

.logo h2 {
    font-size: 1.8rem;
    color: var(--verdeClaro);
    text-align: center;
    margin-right: 10px;
}

.logo h2 span {
    font-size: 1.3rem;
}

.logo input {
    color: var(--verdeClaro);
    font-size: 1.1rem;
    border-radius: 5px;
    color: var(--verde);
    padding: 6.5px 80px;
    margin-left: 5rem;
    outline: 2px solid var(--verde);
}

input[type="submit"] {
    background-color: var(--amarilloVerde);
    border: none;
    padding: 7px 20px;
    margin: 0.5rem;
    border-radius: 4px;
    cursor: pointer;

}

input[type="submit"]:hover {
    background-color: var(--verdeClaro);
}

.navegacion a {
    font-size: 1.3rem;
    padding: 0.5rem;
    color: var(--verdeClaro);
    text-decoration: none;
    transition: background-color all .3s ease-in-out;
}

.navegacion a:hover {
    background-color: var(--amarilloVerde);
    color: var(--verdeClaro);

}

.contenido-encabezado {
    text-align: center;
}

.contenido-encabezado {
    background-size: cover;
    background-position: center;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*Formulario*/

.formulario{
    background-color: rgba(182, 182, 182, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem;
    border-radius: 0.5rem;
    width: 35%;
    margin-top: 12rem;
}


.formulario h1{
    font-size: 3rem;
    text-align: center;
    margin-top: 0;
    color: var(--verde);
    margin-bottom: 2rem;
}

.input-formulario{
    margin-bottom: 1rem;
    width: 100%;
}

.input-formulario input{
    width: 100%;
    padding: 0 1.6rem;
    height: 4.8rem;
    border: 1px solid #f1f1f1;
    font-family: var(--texto);
    font-size: 2rem;
}
.registrarse{
    font-size: 1.8rem;
    width: 50%;
    margin-top: 4rem;
    border: none;
    height: 3rem;
    background-color: var(--amarilloVerde);
    cursor: pointer;
}

.registrarse:hover{
    background-color:var(--verde);
}

.no-underline {
    text-decoration: none; 
    color: white;
}