/* REGISTER */

a.mylink{
    background-color: #6d1627;
    text-decoration: none; 
    padding: 0.5rem 0.9rem;
    border-radius: 9px;
    align-items: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    color: #FFF;
}

a.mylink:hover{
    background-color: #a06873;
    text-decoration: none; 
    padding: 0.5rem 0.9rem;
    border-radius: 9px;
    align-items: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    color: #FFF;
    width: 100%;
    height: 100%;
}
    
/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none; 
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

/* Mark the active step: */
.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #4CAF50;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

/* Style the form */
#regForm {
  background-color: #ffffff;
  margin: auto;
  padding: 30px;
  width: 80%;
  min-width: 300px;
}

/* Style the input fields */
input {
  padding: 10px;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
  margin-bottom: 12px;
}

input#phone-prefix {
  padding: 10px;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
  margin-bottom: 12px;
  width: 20%;
}

div.termsNotAccepted {
  color: red;
  display: none;
}

div.genderEmpty, .genderEmptyGuest1, .genderEmptyGuest2, .countryEmpty, .countryEmptyGuest1, .countryEmptyGuest2, .typeofregistrationEmpty, .someErrorPaymentInfo, .someErrorAttendeeInfo, .paymentMethodEmpty, .extraEmpty{
  color:red;
  display: none;
}


/**
 * The CSS shown here will not be introduced in the Quickstart guide, but shows
 * how you can use CSS to style your Element's container.
 */
.StripeElement {
  background-color: white;
  height: 40px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

div#payment-card-info{
  margin-bottom: 5%;
}

