
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: rgb(131,58,180);
   background: linear-gradient(90deg, rgb(232, 9, 9) 0%, rgb(0, 39, 190) 50%, rgb(232, 9, 9) 100%);


   color: #000;
    width: 100% !important;
}

html {
    width: 100% !important;
}

*{
  margin: 0;
  padding: 0;
}


*:focus {
  outline: none;
}


a:hover {
    text-decoration: none;
    cursor: pointer;
}

button {
  cursor: pointer;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

button {
  outline: none;
}

::selection {
    color: white;
    background: #ff7675;
}

::-webkit-selection {
    color: white;
    background: #ff7675;
}

::-moz-selection {
    color: white;
    background: #ff7675;
}

.wrapper {
    max-width: 680px;
    margin: 0 auto;
    padding: 130px 0;
}

.wrapper form {
    background: #fff;
    color: #000;
    padding: 57px 65px 65px;
    width: 100% !important;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px 0 rgba(0,0,0,.15);
}


.wrapper form h1 {
    font-size: 25px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 25px;
}

.wrapper form h3 {
  font-size: 16px;
  color: #555;
  text-transform: capitalize;
  display: block;
  margin-bottom: 5px;
  margin: 18px 0 0px;
}


.wrapper form h4 {
  font-size: 16px;
  color: #ff0000;
  display: block;
  margin-bottom: 5px;
  margin: 18px 5px 0px;
}

.wrapper form h5 {
  font-size: 16px;
  color: #139B07;
  display: block;
  margin-bottom: 5px;
  margin: 18px 5px 0px;
}







.wrapper form label {
  display: block;
  margin: 15px 0 0px;
}


.wrapper form label b {
  font-size: 16px;
  color: #555;
  text-transform: capitalize;
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.wrapper form input {
  width: 100%;
  line-height: 50px;
  background: #fafafa;
  border: 2px solid #EEEEEE;
  border-radius: 5px;
  padding: 0 20px;
  font-size: 16px;
  color: #666;
  transition: all .4s ease;
}


.wrapper form button {
  background: #25C617;
  display: inline-block;
  line-height: 50px;
  padding: 0 50px;
  border: none;
  border-radius: 5px;
  transition: all .4s ease;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  margin-top: 50px;
  
      width: 100%;

  
  
  }
  
  


  .wrapper form button:hover {
  background: #129906;

  }


/*custom checkbox*/


.form-group {
  display: inline-block !important;
  margin-bottom: 10px;
  margin-right: 25px;
}

.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  position: relative;
  cursor: pointer;
}

.form-group label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #E5E5E5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 5px;
}

.form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #57B846;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.mrgn {
  margin-top: 30px;
  margin-bottom: 30px;
}
























