
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.start-btn a {
  font-size: 22px;
  background: white;
  color: #02242b;
  padding: 15px 18px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;

}


.header
{
    text-align: center;
    text-decoration: none;
}

.start-btn.show-modal {
  opacity: 0;
  visibility: hidden;
}

.modal-box .fa-times {
  position: absolute;
  top: 0;
  right: 0;
  background: #0569d4;
  height: 25px;
  width: 25px;
  line-height: 25px;
  margin: 10px;
  color: white;
  font-size: 14px;
  border-radius: 10%;
  text-align: center;
  cursor: pointer;
  background-color: rgb(100, 186, 220);
}

.fa-times:hover {
  font-size: 18px;
  background-color: rgb(169, 11, 11);
}


.form_container {
  background: #ffffff;
  padding: 30px;
  margin-top: 10px;
  border-radius: 5px;
}

.form_container .form_item {
  margin-bottom: 7px;
}

.form_container .form_wrap.form_grp {
  display: flex;
}

.form_container .form_wrap.form_grp .form_item {
  width: 50%;
}

.form_container .form_wrap.form_grp .form_item:first-child {
  margin-right: 4%;
}

.form_container .form_item label {
  display: block;
  margin-bottom: 2px;
}

.form_container .form_item input,
.form_container .form_item select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #dadce0;
  border-radius: 3px;
}

.form_container .btn input[type="submit"] {
  background: #82b541;
  border: 1px solid #82b541;
  padding: 10px;
  width: 100%;
  border-radius: 3px;
  cursor: pointer;
  color: #fff;
}

.alert{
  width: 50%;
  padding: 5px 5px;
  border-radius: 5px;
  text-align: center;
  font-size: 18pd;
  color: #82b541;
  font-weight: 900;
  display: none;
  margin-left: 15px;
}

.alert1{
  width: auto;
  padding: 5px 5px;
  border-radius: 5px;
  text-align: center;
  font-size: 18pd;
  color: #82b541;
  font-weight: 900;
  display: none;
  margin-left: 15px;
}
/* mine */
.modal-box{
  display: none;
  justify-content: center;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, 0%);
  background: white;
  height: auto;
  width: 600px;
  z-index: 20;
  padding: 0px 0px;
  border-radius: 3px;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, .2);
  align-items: center;
}

.reg-header-GA{
  border-bottom: 2px solid rgb(100, 186, 220);;
  padding: 2%;
  border-radius: 20px;
}
.reg-btn-GA{
  padding: 10px;
  position: relative;
  left:50%;
  top: 10px;
  transform: translate(-50%, 0%);
  width: 180px; 
}

@media screen and (max-width:600px) {
  .modal-box{
    display: none;
    justify-content: center;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, 0%);
    background: white;
    height: auto;
    width: 300px;
    z-index: 20;
    padding: 0px 0px;
    border-radius: 3px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, .2);
    align-items: center;
  }
  .reg-header-GA{
    border-bottom: 2px solid rgb(100, 186, 220);;
    padding: 3%;
    border-radius: 20px;
  
  }
  .reg-btn-GA{
    padding: 10px;
    position: relative;
    left:50%;
    top: 10px;
    transform: translate(-50%, 0%);
    width: 180px; 
  }
  .modal-box .fa-times {
    position: absolute;
    top: 0;
    right: 0;
    background: #0569d4;
    height: 20px;
    width: 20px;
    line-height: 20px;
    margin: 10px;
    color: white;
    font-size: 12px;
    border-radius: 10%;
    text-align: center;
    cursor: pointer;
    background-color: rgb(100, 186, 220);
  }
  
  .fa-times:hover {
    font-size: 15px;
    background-color: rgb(169, 11, 11);
  }
 
}

