

.form
 {
    background-color: #fff;
    height: auto;
    width: 100%;
    border-radius: 20px;
    margin: 20px auto 20px auto;
    display: block;
    border: solid 0px #289df6;
    box-shadow: 0 0 40px 0 #ddd;
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    padding: 18px;
    padding-bottom: 62px;
}

.bmi_calculator {float:left; width:100%; position: relative;}

.result_div h2 {margin-bottom: 4px !important;}

.result_div {float: right;
    margin-top: -257px;
    margin-right: 110px;}




.row-one {
  padding: 20px;
}

.row-two {
  padding: 20px;
}

.text-input {
    width: 86px;
    height: 40px;
    border-radius: 28px;
    background-color: #f1f1f1;
    border: none;
    outline: none;
    padding: 6px 17px;
    cursor: pointer;
}

.text-input:last-child {
  margin-bottom: 35px;
}

.text-input:hover {
  background-color: #cbe7fd;
}

#submit
 {
    border: none;
    border-radius: 36px;
    height: 40px;
    width: 140px;
    background-color: #d1441c;
    color: #fff;
    margin: auto;
    display: block;
    outline: none;
    cursor: pointer;
    float: left;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.bmi_calculator h2 { margin-bottom:30px;}



#submit:hover{
  background-color: #0a8ef2;
}

.text {
    display: inline-block;
    margin: 5px 20px 10px 8px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    color: #000;
    margin-top: 0;
}
.row-one {
    padding: 15px 20px 15px 20px;
}
.row-two {
  padding: 15px 20px 30px 20px;
}

.container {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
}

.container input {
  position: absolute;
  opacity: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #f1f1f1;
    border-radius: 50%;
}

.container:hover input ~ .checkmark {
  background-color: #cbe7fd;
}

.container input:checked ~ .checkmark {
    background-color: #d3441e;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark:after {
  display: block;
}

.container .checkmark:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}