/* Estilos generales */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Contenedor del formulario */
.login-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
    animation: fadeIn 0.8s;
}

h2 {
    margin-bottom: 20px;
    font-weight: 600;
}

/* Estilo de los mensajes de error */
.messages {
    list-style: none;
    padding: 10px;
    color: #ff4d4d;
    font-size: 14px;
}

/* Campos de entrada */
.input-group {
    margin-bottom: 15px;
}

input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

input:focus {
    border-color: #0072ff;
    outline: none;
}

/* Botón de ingreso */
.btn {
    background: #0072ff;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.btn:hover {
    background: #005bb5;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
}

/* Enlaces */
.login-links {
    margin-top: 15px;
}

.login-links a {
    color: #0072ff;
    text-decoration: none;
    font-size: 14px;
}

.login-links a:hover {
    text-decoration: underline;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
