body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

.background-image {
    height: 100vh; /* Ocupa exactamente el alto del viewport */
    flex-direction: column;
    background-image: url('../assets/Images/fondo-img.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contraste{
    background-color: rgba(0, 0, 0, 0.5);
}
.color-primario {
    background-color: #78B4D4;
}

.letra-primario {
    color: #78B4D4;
    text-decoration: none;
}

.letra-input {
    color: #212322;
    font-weight: 600;
}

.input{
    background-color: #f1f1f1;
    border-style: none;
}

.fuente1 {
    font-weight: bold;
    font-size: 25px;
}

.fuente2 {
    font-weight: 500;
    font-size: 15px;
}

.fuente3 {
    font-weight: bold;
    font-size: 30px;
}

.sombra {
    text-shadow: 3px 3px rgba(66, 66, 66, 0.8);
}

.boton {
    border: #78B4D4;
    font-weight: bold;
    color: #ffffff;
    font-size: 15px;
}


.fondo-forms {
    background-color: #ffffff;

}


