: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\ amaneces\ 1.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;
}


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

.logo img {
    height: 10rem;
    margin-left: 11rem;
    margin-top: 12rem;
}

.logo h2 {
    font-size: 2.3rem;
    color: var(--verdeClaro);
    text-align: center;
    margin-top: 12.5rem;
}

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

/*Formulario*/

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: rgba(17, 78, 62, 0.2);
    /* Fondo transparente #114E3 con una opacidad de 0.2 */
}

.form-container {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    padding: 20px;
}

form {
    margin-left: 25rem;
    margin-top: -1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: rgba(17, 78, 56, 0.5);
    border: 1px solid var(--verde);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 110%;
    height: 80%;
}

.column {
    flex: 1;
    padding: 4rem;
    margin: 2rem;
}

.column h2{
    color: var(--verdeClaro);
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 1rem;
}

.column h3{
    margin-top: 5rem;
    margin-bottom: 1rem;
    color: var(--verdeClaro);
    font-size: 1.5rem;
    text-align: left;
}
.column1 {
    flex: 1;
    padding: 4rem;
    margin: 2rem;
    margin-top: 6rem;
}

input {
    font-size: 1.5rem;
    width: 100%;
    padding: 1.5rem;
    margin: 1rem 0;
}

button {
    text-decoration: none;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    margin-top: 1rem;
}



h2 {
    text-align: center;
}

.bta{
    text-decoration: none;
    font-size: 1.5rem;
}

.bta i{
    color: orangered;
    margin-right: 0.5rem;
}


.bta1 {
    font-size: 1.5rem;
    background: blue;
    cursor: pointer;
    color: var(--blanco);
}
.bta1 i{
    margin-right: 0.5rem;
}
.bta1:hover{
    background-color: white;
    color: blue;
}
.bta:hover{
    background-color: rgb(74, 74, 74);
    color: white;
}

.bta2 {
    font-size: 1.5rem;
    background: rgb(215, 85, 19);
    cursor: pointer;
    color: var(--blanco);
}
.bta2 i{
    margin-right: 0.5rem;
}
.bta2:hover{
    background-color:black;
    color:rgb(215, 85, 19);
}

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

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

.no-underline1:hover{
    background-color: white;
    color: blue;
}

.no-underline2 {
    text-decoration: none; 
}
.no-underline2 {
    font-size: 1.5rem;
    background: rgb(215, 85, 19);
    cursor: pointer;
    color: var(--blanco);
}
.no-underline2:hover{
    background-color:black;
    color:rgb(215, 85, 19);
}
