/* 🔹 Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* 🔹 Contenedor principal */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
}

/* 🔹 Caja del login */
.login-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 360px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

/* 🔹 Animación sutil al cargar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🔹 Título */
.login-box h1 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

/* 🔹 Mensaje de error */
.error-msg {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}
