.open-sans-<uniquifier> {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

#contenedor,
#resultado,
#error {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
}

#contenedor h1 {
    text-align: center;
}

#formulario {
    border: 1px solid rgba(189, 187, 159, 0.658);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 3px rgba(0, 0, 0, 0.3);
}

#resultado {
    margin-top: 2rem;
}

#formulario #radios {
    display: flex;
}

#formulario #radios #number {
    padding-right: 1rem;
}

#formulario #radios #especial {
    padding-left: 1rem;
}

#alojados {
    display: none;
    border: 1px solid rgba(189, 187, 159, 0.658);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 3px rgba(0, 0, 0, 0.3);
}

#alojados .pwd,
#formulario #btns {
    display: flex;
    align-items: center;
}

#alojados .pwd .btn_copiar {
    font-size: 15px;
    margin-left: 1rem;
    cursor: pointer;
    border: none;
    background-color: white;
}

#msg {
    display: none;
    width: 50%;
    color: red;
    text-align: center;
    text-decoration: dashed;
}

input[type=number] {
    border: none;
    border-bottom: 2px solid rgb(189, 187, 159);
    background-color: rgba(189, 187, 159, 0.329);
    border-radius: 5px;
    background-color: white;
    padding-left: 40px;
}

input[type=number]:focus {
    border: 1px solid #55555523;
}

input[type=radio]:hover {
    cursor: pointer;
}

#formulario .button {
    border: none;
    border-bottom: 2px solid rgb(189, 187, 159);
    border-radius: 5px;
    background-color: white;
    width: 100%;
}

#formulario .button:hover {
    border-radius: 10px;
    cursor: pointer;
    background-color: aliceblue;
}