body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    background: url("assets/bg.svg") center / cover no-repeat;
}

.container {
    background: white;
    padding: 2rem;
    border-radius: 47%;
    box-shadow: 10px 45px 45px rgba(0,0,0,0.9);
    text-align: center;
    width: 350px;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
    gap: 10px;
}

input[type="number"] {
    width: 120px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border-radius: 30px;
    border: none;
    background-color: #01579B; /* Light Blue 900 */
    color: white;
    font-weight: bold;
    outline: none;

    margin-left: 20px;
    margin-right: 20px
}

/* Quitar flechas del input number */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.icon-btn {
    background: none;
    border-radius: 50%;
    border: 1px solid #ddd;
    font-size: 26px;
    cursor: pointer;
    color: #555;
    padding: 10px;
    height: 50px;
    width: 50px;
    font-weight: bold;
}

.label-title {
    font-size: 26px;
    font-weight: bold;
}

.radio-group label {
    margin: 0 10px;
    font-size: 16px;
    cursor: pointer;
}

.resultado {
    font-size: 22px;
    font-weight: bold;
    margin-top: 10px;
}

hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}