/* Centrar el contenedor */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f5f5f5;
}

/* Animación de aparición */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contenedor del login */
.login-container {
	width: 250px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 0.7s ease-in-out;
}

/* Logo */
.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

/* Campos con íconos */
.input-group {
    display: flex;
    align-items: center;
    background: #eee;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.input-group i {
    margin-right: 10px;
    color: #333;
}

input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
}

/* Botón */
.login-btn {
    background: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-btn:hover {
    background: #45a049;
}