*,
*::before,
*::after {
    box-sizing: border-box;
}


.fondo {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-image: url('../../app/view/images/Smashy\ Oficial.jpg');
    
    background-size: cover; /* Ajusta para que la imagen cubra todo el contenedor */
    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/Mata\ Horizontal.png'); /* Ruta de la imagen de fondo */
    background-size: contain;       /* Ajusta para cubrir todo el área */
    background-position: center;  /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que se repita */
    height: 100px;              /* Altura del encabezado, ajusta según la imagen */
    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%;
    }
    header {
        height: 70px;
        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;
    }

}
