.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:20px;
}

label{
    display:block;
    margin-bottom:10px;
}

.gender-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.gender-box input{
    display:none;
}

.gender-box label{
    text-align:center;
    background:#F2F7F6;
    padding:10px;
    border-radius:16px;
    border:2px solid #d9ebe6;
    cursor:pointer;
    transition:0.3s;
}

.gender-box input:checked + label{
    background:#007f5f;
    border-color:#007f5f;
    color:#ffffff;
    transform:translateY(-2px);
}

.results{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:20px;
}

.result-card{
    background:linear-gradient(145deg,#007f5f,#55a630);
    color:#ffffff;
    border-radius:22px;
    padding:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,127,95,0.2);
}

.headi{
    font-size:16px;
    margin-bottom:15px;
    font-weight:500;
}

.result-value{
    font-size:30px;
    font-weight:600;
    margin-bottom:10px;
}

.result-note{
    line-height:1.6;
    color:#E6F0EE;
}

.health-section{
    margin-top:30px;
    background:#F2F7F6;
    border-radius:22px;
    padding:20px;
}

.health-title{
    font-size:18px;
    color:#007f5f;
    margin-bottom:20px;
    font-weight:600;
}

.health-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.health-item{
    background:#ffffff;
    border-radius:16px;
    padding:18px;
    border-left:5px solid #55a630;
}

.health-item strong{
    display:block;
    margin-bottom:8px;
    color:#007f5f;
}

.progress-wrapper{
    margin-top:20px;
}

.progress-label{
    margin-bottom:10px;
    font-weight:600;
    color:#365951;
}

.progress-bar{
    width:100%;
    height:18px;
    background:#dcebe7;
    border-radius:50px;
    overflow:hidden;
}

.progress{
    height:100%;
    width:0%;
    background:linear-gradient(90deg,#007f5f,#55a630);
    border-radius:50px;
    transition:0.5s;
}

.formula-grid{
    margin-top:20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:20px;
}

.formula-card{
    background:#ffffff;
    border-radius:20px;
    padding:20px;
    border:2px solid #e2efeb;
}

.formula-card p{
    line-height:1.6;
    color:#365951;
	font-weight:500;
	font-size:20px;
}