body {
    font-family: Arial, sans-serif;
    background: url('../img/codigo.svg'), linear-gradient(#0E185F 10%, #2FA4FF 33.33%, #2FA4FF 66.67%, #00FFDD 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    min-height: 80vh;
    margin: 0;
    padding: 0;
    color: white;
}

input[type="text"],
input[type="number"] {
    font-size: 1rem;
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    padding: 10px 40px;
    width: fit-content;
    background-color: #1875E8;
    color: #fff;
    font-size: 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0E185F;
}

ul {
    list-style-type: none;
    padding: 0;
    margin-top: 5px;
    max-height: fit-content;
    overflow-y: auto;
    width: 100%;
}

ul li {
    padding: 5px;
    background-color: #041832;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

ul li:last-child {
    border-bottom: none;
}

.main-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 1000px;
    min-height: 90vh;
    margin: 10px auto;
    padding: 20px;
    background: linear-gradient(0deg, rgba(16, 69, 134, 0.3), rgba(20, 68, 128, 0.3)),
        linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
    border-radius: 24px;
    color: white;
    box-shadow: 4px 4px 20px 0px #01080E26;
    border: 1px solid #1875E8;
    width: 90%; /* Ajuste para pantallas pequeñas */
    box-sizing: border-box;
}

.container {
    display: flex;
    gap: 45px;
    width: 100%;
    align-items: center;
    flex-direction: column;
    padding: 45px;
}

.img-container {
    display: flex;
    justify-content: center;
}

.img-container img {
    width: 100%;
    max-width: 400px; /* Limita el tamaño máximo de la imagen */
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px; /* Limita el tamaño máximo del formulario */
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
}

.total {
    margin-top: 5px;
    font-size: 34px;
    text-align: center;
    color: #fff;
}

.footer {
    margin-top: 5px;
    font-size: 14px;
    text-align: center;
    color: #E8FFC2;
}

body {
    font-family: Arial, sans-serif;
    background: url('../img/codigo.svg'), linear-gradient(#0E185F 10%, #2FA4FF 33.33%, #2FA4FF 66.67%, #00FFDD 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    min-height: 100vh;
    margin: 0;
    padding: 10px;
    color: white;
    box-sizing: border-box;
}

/* Mejorar la accesibilidad de los campos de texto */
input[type="text"],
input[type="number"] {
    font-size: 1rem;
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Ajustar el tamaño y estilo del botón */
button {
    padding: 10px 40px;
    background-color: #1875E8;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0E185F;
}

ul {
    list-style-type: none;
    padding: 0;
    margin-top: 5px;
    max-height: fit-content;
    overflow-y: auto;
    width: 100%;
}

ul li {
    padding: 5px;
    background-color: #041832;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

ul li:last-child {
    border-bottom: none;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
    min-height: 90vh;
    margin: 10
}