*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}


.bmr-container{
  max-width:600px;
  margin:40px auto;
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.bmr-container h1{
  text-align:center;
  margin-bottom:25px;
}

.bmr-row{
  display:flex;
  gap:20px;
  margin-bottom:15px;
  flex-wrap:wrap;
}

.bmr-field{
  flex:1;
  display:flex;
  flex-direction:column;
}

.bmr-field label{
  font-weight:600;
  margin-bottom:5px;
}

.bmr-field input,
.bmr-field select{
  padding:10px;
  border-radius:6px;
  border:1px solid #ccc;
  font-size:14px;
}

.bmr-btn{
  width:100%;
  padding:14px;
  background:#3f51b5;
  color:#fff;
  font-size:16px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  transition:0.3s;
}

.bmr-btn:hover{
  background:#303f9f;
}

.bmr-results{
  margin-top:30px;
  padding:25px;
  background:#f9fafc;
  border-radius:10px;
  display:none;
}

.bmr-highlight{
  font-size:22px;
  font-weight:bold;
  color:#e91e63;
}

@media(max-width:768px){
  .bmr-row{
    flex-direction:column;
  }
  .bmr-container{
  max-width:95%;
  width:95%;
  margin:20px auto;
}

.bmr-container h1{
 font-size:22px
}
  
  
}