.bmi-box {
    max-width:600px;
    margin:auto;
    background:#e6e6e6;
    padding:25px;
    border-radius:20px;
}

.bmi-box .row {
    display:flex;
    gap:20px;
}

.bmi-box .section {
    flex:1;
    background:#ddd;
    padding:20px;
    border-radius:15px;
}

.bmi-box input {
    width:100%;
    padding:10px;
    margin:6px 0;
    font-size:16px;
}

.bmi-box button {
    width:100%;
    padding:15px;
    font-size:20px;
    background:#44d66c;
    border:none;
    border-radius:12px;
    cursor:pointer;
	margin-bottom:10px
}

.meter-wrap {
    margin-top:35px;
    position:relative;
}

.meter {
    display:flex;
    border-radius:15px;
    overflow:hidden;
}

.seg {
    flex:1;
    padding:18px 5px;
    color:white;
    text-align:center;
    font-size:18px;
}

.under { background:#1f6fb2; }
.healthy { background:#1fc400; }
.over { background:#f39c12; }
.obese { background:#e82111; }

.pointer {
    position:absolute;
    top:-38px;
    left:0%;
    transform:translateX(-50%);
    background:#44d66c;
    padding:8px 16px;
    border-radius:10px;
    font-weight:bold;
    transition:0.4s;
}

.pointer:after {
    content:"";
    position:absolute;
    bottom:-10px;
    left:50%;
    transform:translateX(-50%);
    border:10px solid transparent;
    border-top-color:#44d66c;
}

#resultText {
    text-align:center;
    margin-top:15px;
    font-size:20px;
    font-weight:bold;
}