body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    background-image: url('../img/bgforms.jpg'); /*background-color: #37373f;*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
    color:#b49c73;
}


.filtro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Negro con 50% de transparencia */
    z-index: 0;
}

.contenido {
    position: relative;
}

.formulario {
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

h2 {
    font-family:  "Montserrat", sans-serif;
}

.mensaje {
    color:#b49c73;
    justify-content: center;
    text-align: center;
    margin-top: 50px;
}

input[type="text"] {
    background-color: #cacaca; /* Color de fondo */
    color: #37373f;              /* Color del texto */
    padding: 10px 20px;        /* Espaciado interno */
    border: none;              /* Sin bordes */
    border-radius: 10px;        /* Bordes redondeados */
    cursor: pointer;           /* Cambia el cursor al pasar encima */
    margin-right: 5px;         /* Espacio entre botones */
    font-weight: bold;
    transition: border-radius 0.2s ease, background-color 0.3s ease, color 0.2s ease ;
}

input[type="text"]:hover {
    background-color: #fff; /* Color de fondo */
    color: #a78a5a;              /* Color del texto */
    border-radius: 15px;        /* Bordes redondeados */
}

input[type="submit"] {
    background-color: #a78a5a; /* Color de fondo */
    color: #37373f;              /* Color del texto */
    padding: 10px 20px;        /* Espaciado interno */
    border: none;              /* Sin bordes */
    border-radius: 10px;        /* Bordes redondeados */
    cursor: pointer;           /* Cambia el cursor al pasar encima */
    margin-right: 10px;         /* Espacio entre botones */
    font-weight: bold;
    transition:  border-radius 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

input[type="submit"]:hover {
    background-color: #c0a06c; /* Color de fondo */
    color: #37373f;              /* Color del texto */
    border-radius: 15px;        /* Bordes redondeados */
}

.retorno {
    background-color:#a78a5a;
    color:#37373f;
    padding: 10px 30px;        /* Espaciado interno */
    border: none;              /* Sin bordes */
    border-radius: 10px;        /* Bordes redondeados */
    cursor: pointer;           /* Cambia el cursor al pasar encima */
    margin-right: 5px;         /* Espacio entre botones */
    font-weight: bold;
    align-items: center;
    justify-content: center;
    transition:  border-radius 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.retorno:hover {
    background-color:#c0a06c;
    color:#37373f;
    border-radius: 15px;        /* Bordes redondeados */
}
