html,
body {
  font-family: 'Roboto', sans-serif;
  color: #1E4B5F;
  height: 100%;
  background: #E8E8E8;
}
form {
  margin: 0 auto;
  background: #fff;
  max-width: 500px;
  padding: 50px;
  -webkit-box-shadow: 0 5px 20px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 5px 20px 0 rgba(0,0,0,.1);
  box-shadow: 0 5px 20px 0 rgb(0 0 0 / 10%);
}
h5 {
  font-weight: normal;
}
/* b, strong {
  font-weight: 500;
} */
.main {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.container {
  flex: 1 0 auto;
}
.header {
  flex: 0 0 auto;
}
.title {
  text-align: left;
  margin-top: 25px;
  font-weight: 500;
}
.logo {
  margin: 15px 0;
  float: right;
}
.green-line {
    border-bottom: 1px solid #8cc63f;
}
.label {
  text-align: left;
}
.btn-primary {
  color: #1E4B5F;
  background-color: #fff;
  border-color: #8cc63f;
  border-radius: 0;
  font-weight: 500;
  width: 100%;
}
.btn-primary:hover {
  color: #fff;
  background-color: #8cc63f;
  border-color: #8cc63f;
}
.footer {
  flex: 0 0 auto;
  width: 100%;
  background-color: #007A47;
}
.footer .logo {
  float: left;
}
.copy {
  float: right;
  color: #fff;
  margin-top: 20px;
  cursor: pointer;
}

a.info,
span.info-btn {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #8cc63f;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 2px;
  padding: 0;
}
a.info:before,span.info-btn::before {
  content: 'i';
  font-weight: 600;
  font-size: .8125rem;
  display: block;
  position: absolute;
  left: 48%;
  top: 53%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  color: #fff;
}
a.info>span {
  display: none;
  position: absolute;
  z-index: 9000;
  -webkit-box-shadow: 0 0 10px 1px rgb(0 0 0 / 30%);
  box-shadow: 0 0 10px 1px rgb(0 0 0 / 30%);
  top: 20px;
  width: 380px;
  /* left: 32px; */
  padding: 8px 12px;
  background-color: #8cc63f;
  color: #fff;
  -webkit-animation: customFadeInUp .5s 1;
  animation: customFadeInUp .5s 1;
  font-family: Roboto;
  font-style: normal;
}
a.info.active>span {
  display: block;
  background-color: #fff;
  color: #575757;
  border: 1px solid #8cc63f;
  border-width: thin;
  font-size: 1rem;
}
.modal-content {
  border: 1px solid #8cc63f;
  border-radius: 0;
}

.form-group {
  margin-bottom: 1rem;
}
.input-group .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

 /* NEW */
.alert {
  border-radius: 0;
}