body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #1e1e1e;
    padding: 80px; /* Aumentar el relleno */
    border-radius: 12px; /* Borde más redondeado */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7); /* Sombra más pronunciada */
    width: 400px; /* Aumentar el ancho del contenedor */
    text-align: center;
}




h1 {
    color: #76ff03;
    margin-bottom: 20px;
    font-size: 28px; /* Tamaño de fuente más grande */
    font-weight: bold; /* Fuente en negrita */
}

label {
    display: block;
    margin: 20px 0 10px; /* Ajustar los márgenes */
    font-size: 20px; /* Tamaño de fuente más grande */
    font-weight: bold; /* Fuente en negrita */
}

input[type="text"] {
    width: 80%;
    padding: 20px; /* Aumentar el relleno */
    margin-bottom: 20px;
    border: 1px solid #333;
    border-radius: 6px; /* Borde más redondeado */
    background-color: #2e2e2e;
    color: #ffffff;
    font-size: 18px; /* Tamaño de fuente más grande */
    font-weight: bold; /* Fuente en negrita */
}

button {
    width: 100%;
    padding: 15px; /* Aumentar el relleno */
    border: none;
    border-radius: 6px; /* Borde más redondeado */
    background-color: #76ff03;
    color: #121212;
    font-size: 18px; /* Tamaño de fuente más grande */
    font-weight: bold; /* Fuente en negrita */
    cursor: pointer;
}

button:hover {
    background-color: #64dd17;
}
