body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background-color: #f2f2f2;
  color: #0c6251;
  margin: 0;
}

.box {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  height: 100vh;
  /* gap: 12px; */
}

input, #input{
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 4px;
  outline: 0px;
  border: none;
  color: #0c6251;
  font-weight: 500;
}

input:hover , #input:hover { 
  outline: 1px solid #3fbb9b;
  /* background-color: #f5f5f5; */
}

input:hover, #input:focus { 
  outline: 2px solid #3fbb9b;
  /* background-color: yellow; */
}


button {
  border: none;
  font-size: 16px;
  color: white;
  padding: 12px 32px;
  text-align: center;
  text-decoration: none;
  background-color: #0c6251;
  border-radius: 4px;
}

h1 {
  text-align: center;
  font-weight: 500;
}


table {
  width: 100%;
  border-spacing: 40px 10px;
  /* flex-grow: 1 */
}

th {
  width: 50%;
}

td {
  width: 50%;
}
.textAlignRight {
  text-align: right;
}

.textAlignLeft {
  text-align: left;
}

.newHkd {
  font-size: 46px;
  font-weight: 600;
}


.ocgl {
  width: 200px;
  padding-top: 20px;
}
footer {
  font-size: 12px;
  width: 100%;
  text-align: center;
  align-self: flex-end;
  margin-top: auto;
  padding-bottom: 40px;
  padding-top: 20px;
}
.hints{
  font-size: 12px;
  width: 100%;
  text-align: center;
  /* padding-top: 10px; */
  margin: 0;
}

a {
  color: #3fbb9b;
}

.form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction:row;
  padding-bottom: 32px;
}


.form-2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  
}

.result{
  width: 100%;
  text-align: center;
}

.flex {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 500px) {
  .form {
    flex-direction: column;
    padding-bottom: 16px;
  }
  .newHkd {
  font-size: 32px;
}
}