button.enroll__btn {
    border: none;
    cursor: pointer;
}

.modal {
  justify-content: center;
  align-items: center;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  /*padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  color: #1C1C1C;
  margin: 25px;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 8px;
  width: 100%;
  max-width: 780px;
}

.modal .close {
    color: #929292;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-top: -10px;
    margin-right: 5px;
}

.modal :is(.close:hover, .close:focus) {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal .popup-container {
    width: 100%;
    max-width: 400px;
    margin: 10% auto;
}

.modal .popup-text {
    padding: 24px 0;
}

.modal h3 {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 40px;
    background: #38485C;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.modal p {
  font-size: 16px;
  line-height:24px;
  color: #1C1C1C;
}

.modal input {
    background: #F6F8FA;
    border: 1px solid #3F64E7;
    box-shadow: 0px 0px 1px rgba(20, 20, 20, 0.08), 0px 1px 8px 2px rgba(20, 20, 20, 0.08);
    border-radius: 8px;
    width: 91%;
    font-size: 16px;
    padding: 10px 16px;
    margin-bottom:16px;
}

@media (max-width: 361px){
  .modal input {
   width: 88%;
  }
}

.modal .grecaptcha-badge {
    min-width: 100%;
    margin-bottom:24px;
}
.modal input.hs-button.primary.large {
    background: #FDD306;
    box-shadow: 1px 2px 7px rgba(1, 27, 121, 0.5);
    border-radius: 32px;
    border: none;
    width: fit-content;
    font-size: 16px;
    height: 48px;
    color: #38485C;
    padding-right: 50px;
    cursor:pointer;
}

.actions{
  width:fit-content;
  position:relative;
}

.actions:after {
    content: "\f138";
    font-family: 'FontAwesome';
    color: #ffffff;
    font-size: 23px;
    position: absolute;
    right: 17px;
    top: 20%;
}

.modal ul {
  list-style: none;
}