/* Reseteo de márgenes y padding para todos los elementos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Estilos para el cuerpo */
body {
    background: #d1ddf3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Estilos para los párrafos */
p {
    margin-top: 10px;
    color: #050505;
    font-size: 12px;
    text-shadow: 3px 3px 5px rgba(194, 163, 163, 0.973);
    margin-left: 10px;
}

/* Contenedor principal */
.contenedor {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}
.superior{
    padding-top: 25PX;
    background-image: url(../img/LOGO.png);
    padding-bottom: 25px;
    
}
.superior::before{
    opacity: 0.4;
}

h1, h4 {
    text-align: center; /* Centra el texto */
    color: #070707; /* Color del texto */
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f7f7f7;
    margin-left: 30%;
    margin-right: 30%;
    border-radius: 12px;
    opacity: 0.8;
}

h1 {
    font-size: 24px; /* Tamaño de fuente del título */
}

h4 {
    font-size: 18px; /* Tamaño de fuente del subtítulo */
}


/* Estilo para el div inferior */
.inferior {
    height: 35px;
    background-color: #E06245;
}

/* Estilos para el formulario de login */
.login-container {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

/* Estilos para el título dentro del formulario */
h2 {
    margin-bottom: 20px;
    color: #333;
}

/* Estilos para los inputs */
.input-group {
    margin-bottom: 15px;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
}

/* Estilos para los botones */
button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

/* Estilos para el botón de login */
.btn-login {
    background-color: #4CAF50;
    color: white;
}

.btn-login:hover {
    background-color: #45a049;
}

/* Estilos para los botones de administración */
.admin-controls {
    margin-top: 20px;
}

.btn-add {
    background-color: #2196F3;
    color: white;
    cursor: not-allowed;
}

.btn-add:enabled {
    cursor: pointer;
}

.btn-add:hover {
    background-color: #1976D2;
}

/* Estilos para los inputs y botones cuando están enfocados */
input:focus, button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 165, 0, 0.8);
}
