body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(-45deg, #ac553a, #952751, #166582, #157f66);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    color: white;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    animation: fadeInDown 2s ease;
    margin-bottom: 0.5rem;
}

.main-container p {
    font-size: 1.25rem;
    margin: 1rem 0;
    opacity: 0;
    animation: fadeInUp 2s ease forwards;
    animation-delay: 1s;
    line-height: 1.6;
}

.btn-login {
    background-color: #23a6d5;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-login:hover, .btn-login:focus {
    background-color: #e73c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* Estilos adicionales para los elementos de lista según tu última solicitud */
.list-group-item {
    background-color: #00000017;
    color: white;
}

.footer {
    width: 100%;
    text-align: center;
    position: fixed;
    bottom: 0;
    padding: 10px 0;
    background-color: #00000017; /* Ajusta el color de fondo según tu diseño */
    color: white; /* Ajusta el color del texto según tu diseño */
    font-size: 14px;
}

.footer a {
    color: #23d5ab; /* Ajusta este color para que coincida con el esquema de tu sitio */
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
.input-file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.btn-upload {
    background-color: #23a6d5; /* Color de fondo del botón */
    color: white; /* Color del texto */
    padding: 10px 20px; /* Espaciado interno */
    border-radius: 5px; /* Bordes redondeados */
    font-family: 'Segoe UI', sans-serif; /* Fuente del botón */
    font-size: 16px; /* Tamaño del texto */
    cursor: pointer; /* Cambiar el cursor */
    display: inline-block; /* Hacer que el label funcione como un botón */
    transition: background-color 0.3s ease; /* Transición suave para el color de fondo */
}

.btn-upload:hover {
    background-color: #e73c7e; /* Cambiar color de fondo al pasar el mouse */
}
