.bmi-container{
    max-width:1400px;
    display:flex;
    gap:80px;
    align-items:flex-start;
    justify-content:flex-start;
}

.bmi-form{
    width:500px;
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/*
.bmi-form h2{
    color:#17396b;
    font-size:42px;
    margin-bottom:30px;
}
*/

.gender{
    display:flex;
    gap:30px;
    margin-bottom:25px;
}
.gender label {
    font-size: 18px;
    display: flex;
    gap: 10px;
    font-weight: 600;
}

.row{
    display:flex;
    gap:15px;
}

input{
    width:100%;
    padding:18px;
    border:1px solid #cdd4e0;
    border-radius:10px;
    font-size:18px;
    margin-bottom:20px;
}

button{
    width:100%;
    background:#1565ff;
    color:#fff;
    border:none;
    padding:18px;
    border-radius:10px;
    font-size:22px;
    cursor:pointer;
}

button:hover{
    background:#0f53d4;
}

.result-area{
    text-align:center;
}

.result-area h2{
    color:#17396b;
    margin-bottom:25px;
}

.gauge-wrapper{
    position:relative;
    width:550px;
    height:280px;
    margin:auto;
}

.gauge{
    width:550px;
    height:275px;
    border-radius:275px 275px 0 0;
    overflow:hidden;
    background:
    conic-gradient(
        from 180deg,
        #f5c242 0deg 45deg,
        #ffeb3b 45deg 90deg,
        #20c94e 90deg 135deg,
        #ff9e2b 135deg 180deg
    );
}

.gauge-inner{
    position:absolute;
    width:400px;
    height:200px;
    background:#eef3f8;
    border-radius:200px 200px 0 0;
    left:75px;
    top:75px;
}

.needle{
    position:absolute;
    width:6px;
    height:180px;
    background:#17396b;
    left:272px;
    bottom:0;
    transform-origin:bottom center;
    transform:rotate(-90deg);
    transition:all 1s ease;
    border-radius:10px;
}

.center-dot{
    position:absolute;
    width:30px;
    height:30px;
    border-radius:50%;
    background:#17396b;
    left:260px;
    bottom:-15px;
}

.stats{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-top:40px;
}

.stat{
    text-align:center;
}

.stat h4{
    color:#17396b;
    margin-bottom:10px;
}

.stat p{
    font-size:28px;
    font-weight:bold;
    color:#17396b;
}

#category{
    margin-top:20px;
    font-size:28px;
    color:#17396b;
    font-weight:bold;
}
.calculator{
    max-width:500px;
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 0 15px rgba(0,0,0,.1);
}
h2{
    text-align:center;
    color:#003366;
}
label{
    display:block;
    margin-top:15px;
    font-weight:bold;
}
input{
    width:100%;
    padding:10px;
    margin-top:5px;
    border:1px solid #ddd;
    border-radius:5px;
}
button{
    width:100%;
    margin-top:20px;
    padding:12px;
    background:#0056d2;
    color:#fff;
    border:none;
    border-radius:5px;
    cursor:pointer;
}
button:hover{
    background:#003fa0;
}
.result{
    margin-top:20px;
    padding:15px;
    background:#e8f4ff;
    border-radius:5px;
    font-size:18px;
    font-weight:bold;
    text-align:center;
}