*,
*::before,
*::after {
    box-sizing: border-box;
}


.fondo {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-image: url('../../app/view/images/StrippyOff.PNG');
    background-size: 70%; /* Reduce el tamaño de la imagen (ajusta entre 50% y 100%) */
    background-position: center center;
    background-repeat: no-repeat;
    padding: 20px; /* Para que el contenido no quede pegado */
    border-radius: 8px; /* Opcional, para bordes redondeados */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);

}
.container{
    background-color:  rgba(242, 238, 238, 0.882);;
}
.form-group {
    margin-bottom: 15px;
}

.error {
    color: #dc3545;
}

.success {
    color: #28a745;
}
.h1 {
    text-align: center;
    height: auto;
    /*background-color: rgba(97, 109, 116, 0.474);
   /* filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));*/
    border-radius: 5px;
}

header {
    background-image: url('../../app/view/images/StripHorizontal.PNG');
    background-size: contain;     /* Sin estirar: mantiene proporciones, se ve nítida */
    background-position: center;
    background-repeat: no-repeat;
    height: 120px;                /* Algo más de altura para que la imagen se vea más grande */
    display: flex;
    align-items: center;          /* Centra verticalmente el contenido */
    justify-content: center;      /* Centra horizontalmente el contenido */
   /* padding: 5px;
   /* border-radius: 8px 8px 0 0;  /* Opcional, bordes redondeados arriba */

   
}
h1 {
margin: 0;
font-weight: 700;
}

.footer-1{
    text-align: center;
}

@media (max-width: 480px) {
    .fondo {
        padding: 15px;
        max-width: 95%;
        background-size: 135%; /* Tamaño de la imagen de fondo en móvil (ajusta a tu gusto) */
        min-height: 400px;   /* Altura mínima del bloque en móvil (opcional) */
    }
    header {
        height: 90px;
        background-size: contain;
    }
    h1 {
        font-size: 1.5rem;
    }

    input, select, button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    margin-top: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    }

}
