body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: black;
}

form {
    display: flex;
    flex-direction: column;
    width: 300px; /* Ajusta el ancho según necesites */
    gap: 1rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

input[type="submit"] {
    margin-top: 1rem;
    width: 100%;
    padding: 0.75rem;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

input[type="submit"]:hover {
    background: #0056b3;
}

h2 {
    margin-top: 0rem;
    text-align: center;
    text-decoration: underline;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 1rem; /* Espacio entre label e input */
}

.form-row label {
    min-width: 90px; /* Ajusta según el texto de tus labels */
}