body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #0c1527, #203a43, #328585);
    color: #fff;
}

.login-container {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #4caf50;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    padding: 20px;
    width: 300px;
    text-align: center;
}

.login-container .canvas {
    position: absolute;
    height: 335px;
    width: 300px;
}

.login-container h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #4caf50;
    text-shadow: 0 0 10px #4caf50;
}

.login-container input {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: #1e1e1e;
    color: #4caf50;
    outline: none;
    font-size: 1rem;
    box-shadow: inset 0 0 5px rgba(0, 255, 0, 0.5);
    text-align: center;
}

.login-container input:focus {
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

.login-container button {
    width: 97%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    background: #4caf50;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
    transition: background 0.3s, transform 0.2s;
}

.login-container button:hover {
    background: #66ff66;
    transform: scale(1.05);
}

.mfa {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mfa img {
    height: 150px;
    width: 150px;
    margin-bottom: 15px;
    border: 2px solid #4caf50;
    border-radius: 5px;
}

.mfa label {
    margin-bottom: 10px;
}

.google-play-link {
    display: inline-block;
    margin-top: 20px;
    color: #4caf50;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid #4caf50;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.google-play-link:hover {
    background: #4caf50;
    color: #fff;
}

#ingresar{
    display: none;
}