:root {
  --color: #4357ad;
  --color-hover: #334284;
  --bg-color: #4357ad;
  --asterisk: #f40119;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-color: var(--bg-color);
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

input,
button,
textarea {
  font-family: inherit;
}

.passform{
    min-height: 100vh;
    background-color:#1a2b48fc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    z-index: 999999999;
    width: 100%;
    height: 100%;

}
.passform .form-wrapper {
  width: 100%;
  max-width: 500px;
  padding: 50px;
  background-color: #ffffff;
  box-shadow: 0 0 50px -35px rgba(0, 0, 0, 0.4);
}

.passform .form-wrapper h2 {
  margin-bottom: 25px;
  color: #212529;
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
}

.passform .form-wrapper .form-group {
  margin-bottom: 15px;
}

.passform .form-group label {
  display: inline-block;
  margin-bottom: 8px;
  color: #212529;
  text-transform: capitalize;
}

.passform .form-group .form-control {
  display: block;
  width: 100%;
  height: 50px;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #cccccc;
  outline: none;
}

.passform .form-group .form-control:focus {
  border-color: var(--color);
}

.passform .form-group textarea {
  height: 100px !important;
  resize: none;
}

.passform .checkbox-group {
  margin-bottom: 10px;
}

.passform .custom-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}

.passform .custom-checkbox input {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--color);
  margin-right: 10px;
  text-align:center;
}

.passform .custom-checkbox input:checked {
  background-image: url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22%23ffffff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%2011l2-2%205%205L18%203l2%202L7%2018z%22%2F%3E%3C%2Fsvg%3E);
  background-position: center;
  background-size: 80%;
  background-repeat: no-repeat;
  background-color: var(--color);
}

.passform .submit-btn {
  display: block;
  width: 100%;
  margin: 25px 0 15px;
  padding: 12px 40px;
  color: #ffffff;
  background-color:#002a57;
  background-size: 200%;
  border: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
  cursor: pointer;
}

.passform .submit-btn:hover {
  background-color: black;
}

.passform .asterisk {
  color: var(--asterisk);
  font-size: 18px;
}

.passform .optional {
  color: #707070;
  font-size: 14px;
}

.passform .form-wrapper p {
  margin-top: 10px;
  color: #707070;
  text-align: right;
  font-size: 15px;
}

.passform .form-wrapper > p {
  text-align: center;
}

.passform .form-wrapper a {
  color: #4357ad;
  text-decoration: none;
  font-weight: 500;
}

.passform .form-wrapper a:hover {
  text-decoration: underline;
}

@media (max-width: 500px) {
 .passform  .form-wrapper {
    padding: 25px 30px;
  }

 .passform  .form-wrapper h2 {
    margin-bottom: 20px;
    font-size: 30px;
  }
}