*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Estilo general */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #232323, #36717a);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.mainContent {
    background: transparent;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    padding: 20px;
    animation: fadeIn 1s ease-in-out;
}

/* Animación de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.main-top img {
    width: 120px;
    margin-bottom: 20px;
    transition: transform 0.5s ease-in-out;
}

.main-top img:hover {
    transform: rotate(360deg);
}

/* Formulario */
.main-mid form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-mid input[type="email"],
.main-mid input[type="password"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    background: #e0f2fe;
    color: #1e3a8a;
    transition: background 0.3s ease, transform 0.3s ease;
}

.main-mid input[type="email"]:focus,
.main-mid input[type="password"]:focus {
    background: #bae6fd;
    transform: scale(1.05);
}

/* Botón de ingresar */
#btnIngresar {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(135deg, #232323, #36717a);
    cursor: pointer;
    transition: background 0.5s ease, box-shadow 0.3s ease;
}

#btnIngresar:hover {
    background: linear-gradient(75deg, #232323, #36717a);
    box-shadow: 0 4px 10px rgba(78, 78, 78, 0.5);
    opacity: .8;
}

/* Responsividad */
@media (max-width: 480px) {
    .mainContent {
        width: 90%;
    }

    .main-top img {
        width: 100px;
    }
}

p{
    margin: 20px 0px;
    color: #ffffff;
}

p a:hover{
    color: #ffffff;
}
