form{
    width: 96%;
    background-color: #000;
    border: 2px solid #ff3131;
    border-radius: 3px;
    padding: 2%;
    margin: 10% 0;
    font-family: verdana;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
}

form span{
    color: #ff0000;
}

form input{
    width: 100%;
    height: 30px;
    font-size: 17px;
}

form label {
    width: 98%;
    text-align: start;
}

form p{
    color: #ff0000;
    width: 98%;
    text-align: start;
    font-weight: normal;
    font-size: 16px;
    display: none;
}

form input {
    outline: none;
    border-radius: 10px;
    border: 2px solid #ff3131;
    margin-top: 0.5%;
    margin-bottom: 2.5%;
    height: 20px;
    font-size: 16px;
}

#images{
    border: none;
    border-radius: 0;
    height: 50px;
}


input::placeholder{
    font-size: 16px;
    font-family: verdana;
    color: #474747;
}

input[type="file"]::-webkit-file-upload-button {
    background-color: #ff3131;
    font-family: verdana;
    font-size: 16px;
    font-weight: normal;
    color: #000;
    border: none;
    padding: 1%;
    cursor: pointer;
    border-radius: 10px;
  }

input[type="file"]::-webkit-file-upload-button:hover{
    background-color: #000;
    color: #ff3131;
}
  
.spinner {
    border: 4px dashed #7CFC00;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  form .submitting{
      display:none;
      color:#7CFC00;
      align-items:center;
      width: 98%;
      justify-content: start;
      margin-bottom: 2%;
  }
  
  .submitting p{
      color:#7CFC00 !important;
      margin-left:2%;
  }

  form button{
    background-color: #ff3131;
    font-family: verdana;
    font-size: 16px;
    font-weight: normal;
    color: #000;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    padding: 1%;
}

form button:hover{
    background-color: #000;
    color: #ff3131;
}

.consent_container{
    display: flex;
    justify-content: start;
    align-items: center;
    width: 98%;
}

.consent_container input{
    width: 4%;
    margin: 0;
    padding: 0;
}

.consent_text{
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    display: inline-block;
    padding: 0;
    margin: 0;
    margin-left: 0.5%;
}

/* Hide the default checkbox */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 30px;
    height: 30px;
    border: 2px solid #7a7a7a;
    border-radius: 0;
    background-color: #fff;
    padding: 0.1%;
  }
  
  /* Change the background color of the checkbox when checked */
  input[type="checkbox"]:checked {
    border-color: #ff3131;
    
  }
  
  /* Change the color of the checkmark */
  input[type="checkbox"]:checked::before {
    content: "\2714";
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #ff3131;
    text-align: center;
  }

  input[type="checkbox"]:checked::after{
    color: #ff3131;
  }

  .name {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin: 0;
    padding: 0;
}

.first_name_container{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 46%;
    margin: 0;
    padding: 0;
}

.last_name_container{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
    width: 46%;
    margin: 0;
    padding: 0;
}

.last_name_container input, .last_name_container input{
    width: 100%;
}

.last_name_container label{
    width: 100%;
}