body { font-family: Arial, sans-serif; display: flex;
                flex-direction: column;
                justify-content: center; /* Centra horizontalmente */
                align-items: center;
            background: linear-gradient(45deg, #1e3c72, #2a5298);   }
        .error { color: red; margin-bottom: 15px; }
        .form-group { margin-bottom: 15px; margin-top: 20px; }
        label { display: block; margin-bottom: 1px; }
        input[type="email"], input[type="password"] { width: 100%; padding: 8px; box-sizing: border-box; }
        button { background-color:#ffc107 ; color: white; font-weight: bold; padding: 10px 100px;border-radius: 10px; border: none; cursor: pointer; margin-top: 20px;}
        button:hover { background-color: #58c936; }

        .box{

                /* Centra verticalmente */
                width: fit-content;
                height: fit-content;
                display: flex;
                flex-direction: column;
                background: rgba(0, 0, 0, 0.4);
;
                color: azure;
                
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); border-radius: 10px;  
                padding: 100px;
                margin-top: 150px;
        }
        .box h2{
                margin-top: 5px;
                text-align: center;
                font-size: 30px;
                
                font-weight: bolder;
        }

        .box a{
            color: antiquewhite;
        }
        .box a:hover{
            color: #ffc107;
        }
        /* Estilos para el footer FULL-WIDTH */
        .footer {
            background-color: #7ab8f5;
            padding: 20px 0;
            text-align: center;
            width: 100%; /* Ocupa todo el ancho */
            position: relative;
            left: 0;
            right: 0;
            margin-top: 120px;
        }

        /* Contenedor flexible para las imágenes */
        .footer-images {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            max-width: 1200px; /* Ancho máximo del contenido (opcional) */
            margin: 0 auto; /* Centra el contenedor si tiene max-width */
        }

        /* Estilos para las imágenes */
        .footer img {
            width: 80px;
            height: auto;
            transition: transform 0.3s;
        }

        .footer img:hover {
            transform: scale(1.1);
        }

        /* Estilo base para el input de contraseña */
        input[type="password"] {
        width: 100%;
        padding: 12px 15px;
        margin: 8px 0;
        box-sizing: border-box;
        border: 2px solid #ccc;
        border-radius: 8px;
        font-size: 16px;
        background-color: #f8f8f8;
        transition: all 0.3s ease;
        }

        /* Estilo cuando el input está enfocado */
        input[type="password"]:focus {
        border-color: #4a90e2;
        box-shadow: 0 0 8px rgba(74, 144, 226, 0.3);
        outline: none;
        background-color: #fff;
        }

        /* Estilo para el placeholder */
        input[type="password"]::placeholder {
        color: #999;
        font-style: italic;
        }

        /* Estilo cuando hay error */
        input[type="password"].error {
        border-color: #e74c3c;
        background-color: #ffeeed;
        }

        /* Estilo base para el input de email */
        input[type="email"] {
        width: 100%;
        padding: 12px 15px;
        margin: 8px 0;
        box-sizing: border-box;
        border: 2px solid #ccc;
        border-radius: 8px;
        font-size: 16px;
        background-color: #f8f8f8;
        transition: all 0.3s ease;
        }

        /* Estilo cuando el input está enfocado */
        input[type="email"]:focus {
        border-color: #4a90e2;
        box-shadow: 0 0 8px rgba(74, 144, 226, 0.3);
        outline: none;
        background-color: #fff;
        }

        /* Estilo para el placeholder */
        input[type="email"]::placeholder {
        color: #999;
        font-style: italic;
        }

        /* Estilo cuando hay error */
        input[type="email"].error {
        border-color: #e74c3c;
        }

        .img_log{
            width: 150px;
            aspect-ratio: 1/1;
            object-fit: contain;
            
        
        }

        