
.container{
    width:100% ;
    min-height: 100vh;
    background:rgb(0, 0, 0) ;
    padding: 0px;
}

section {
    max-width: 600px;
    max-height: 400px;
    margin: auto;
    text-align: center;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px;
    background-color: #ffc107;

    position: absolute;  /* lo posiciona respecto a la pantalla */
    top: 50%;            /* 50% desde arriba */
    left: 50%;           /* 50% desde la izquierda */
    transform: translate(-50%, -50%); /* lo centra justo al medio */
}

input {
    width: 70%;
    padding: 10px;
}

button {
    width: 20%;
    margin: 15px 0;
    padding: 15px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    background-color: #000;
    transition: background-color .5s;
    color: #fff;
}

button:hover {
    background-color: #333;
    color: #fff;
}

ul {
    text-align: left;
}

ul li {
    border-bottom: 1px dashed #333;
    margin: 8px 0;
}

span {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: firebrick;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    margin: 0 10px;
    cursor: pointer;
}

span:hover {
    background-color: darkred;
}