/*==============================
BMI Calculator
===============================*/

.bmi-section{
    padding:80px 20px;
}



.bmi-card{
    display:flex;
    gap:40px;
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.left-side{
    width:55%;
    padding:50px;
}

.right-side{
    width:45%;
    background:linear-gradient(135deg,#3B82F6,#2563EB);
    color:#fff;
    padding:50px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.weight-recommendation {
    margin-top: 20px;
    padding: 15px 18px;
    background: #f8f8f8;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    color:#333;
}
.gender {
    display: flex;
    align-items: center;
    gap: 20px;
}
.gender input[type="radio"] {
    width: auto;
    height: auto;
    padding:0;
}
.left-side h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
    color:#222;
}

.left-side p{
    color:#666;
    margin-bottom:35px;
    line-height:1.8;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    font-weight:600;
    margin-bottom:10px;
    color:#333;
}

.form-group input{
    width:100%;
    height:58px;
    border:2px solid #e7eef7;
    border-radius:12px;
    padding:0 18px;
    font-size:16px;
    transition:.3s;
}

.form-group input:focus{
    outline:none;
    border-color:#2563EB;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
}




.btn-group{
    display:flex;
    gap:15px;
    margin-top:10px;
}

#calculate{
    flex:1;
    height:58px;
    min-height:35px;
    border:none;
    border-radius:12px;
    background:#2563EB;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

#calculate:hover{
    background:#174dc2;
}

#reset{
    width:130px;
    border:none;
    border-radius:12px;
    background:#eef3ff;
    color:#2563EB;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    min-height: 35px;
    transition:.3s;
}

#reset:hover{
    background:#dfe8ff;
}

.result-box{
    width:100%;
    text-align:center;
}

.result-box h3{
    font-size:30px;
    color:#fff;
    margin-bottom:20px;
}

#bmi-value{
    font-size:75px;
    font-weight:700;
    line-height:1;
    margin-bottom:15px;
}

#bmi-status{
    display:inline-block;
    background:#fff;
    color:#2563EB;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:35px;
}

.progress{
    width:100%;
    height:18px;
    background:rgba(255,255,255,.25);
    border-radius:50px;
    overflow:hidden;
    margin-bottom:35px;
}

#progress-bar{
    width:0%;
    height:100%;
    background:#00e676;
    transition:.5s;
}

.info{
    background:rgba(255,255,255,.12);
    padding:20px;
    border-radius:18px;
    margin-bottom:25px;
}

.info p{
    font-size:15px;
    margin-bottom:8px;
}

.info h4{
    font-size:26px;
    color:#fff;
}

.tips{
    background:rgba(255,255,255,.12);
    padding:20px;
    border-radius:18px;
    text-align:left;
}

.tips h5{
    margin-bottom:12px;
    font-size:20px;
    color:#fff;
}

.tips ul{
    padding-left:18px;
}

.tips li{
    margin-bottom:10px;
    line-height:1.7;
}

/*==========================
Responsive
===========================*/

@media(max-width:991px){

.bmi-card{
    flex-direction:column;
}

.left-side,
.right-side{
    width:100%;
}

.left-side,.right-side{
    padding:15px;
}
.bmi-card{
    gap: 10px;
}


}

@media(max-width:576px){

.bmi-section{
    padding:30px 0px;
}

.left-side h2{
    font-size:30px;
}

#bmi-value{
    font-size:55px;
}
.left-side p{
    margin-bottom: 10px;
}
 
.bmi-section .form-group {
    margin-bottom: 2px;
   
}
.btn-group{
    flex-direction:column;
}

.form-group input{

    height: 35px;
}
#reset{
    width:100%;
}


}