/*********************
general styles
*********************/

.center-title .entry-title {
  text-align: center;
}
button:disabled {
  opacity: 0.4;
}

a.reg-btn,
button.reg-btn {
  display: inline-block;
  padding: 10px 30px;
  color: #fff;
  font-size: 1em;
  line-height: 1.5;
  text-align: center;
  text-shadow: none !important;
  background-color: #29516d;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
.reg-btn:hover {
  color: #fff;
  background-color: #1a2844;
}
.reg-btn.next-btn {
  background-color: #d94e41;
}
.reg-btn.next-btn:hover {
  background-color: #793b42;
}
.reg-btn:before,
.reg-btn:after {
  font-family: "FontAwesome";
  font-weight: 900;
  vertical-align: middle;
}
.reg-btn.next-btn:after {
  content: "\f105";
  margin-left: 5px;
}
.reg-btn.back-btn:before {
  content: "\f104";
  margin-right: 5px;
}

.reg-form {
  max-width: 500px;
  min-height: 25vh;
  margin: 0 auto;
}
.reg-form .input-container {
  margin-bottom: 1.25em;
}
.reg-form input[type="text"],
.reg-form input[type="number"],
.reg-form input[type="password"],
.reg-form input[type="email"],
.reg-form input[type="tel"],
.reg-form select {
  display: block;
  width: 100%;
}
.reg-form .button-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-top: 1.25em;
}
.reg-form .button-container .reg-btn {
  min-width: 120px;
  margin: 1.25em 1.25em 0 1.25em;
}
.reg-form .error {
  color: #d94e41;
  font-weight: 700;
}
.reg-form h3 {
  margin-top: 1.5em;
}

.reg-form.multi-col-form {
  max-width: 750px;
}
.reg-form.multi-col-form .input-container > div + div {
  margin-top: 1.25em;
}

@media screen and (min-width: 768px) {
  .reg-form.multi-col-form .input-container {
    display: flex;
    justify-content: space-between;
  }
  .reg-form.multi-col-form .input-container > div {
    flex: 1 1 50%;
  }
  .reg-form.multi-col-form .input-container > div + div {
    margin-top: 0;
    margin-left: 1.25em;
  }
}

/*******************************************
    student page
********************************************/

.grad-date {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.grad-date select + select {
  margin-left: 1.25em;
}
.grad-date select {
  flex: 1 1 50%;
}

/************************
eyes styles
*******************/

.icon-wrap {
  position: relative;
}
.input__eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  cursor: pointer;
}

/*******************************************
    complete reg page
********************************************/
.input-container {
  position: relative;
}
#recaptcha {
  margin: 1.25em 0;
}

/* The message box is shown when the user clicks on the password field */
#passwordMessage {
  display: none;
  background: #f1f1f1;
  color: #000;
  position: absolute;
  padding: 20px;
  z-index: 9999985554646879879;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 11px 18px;
}

#passwordMessage p {
  padding: 0px 35px;
  font-size: 18px;
}

#passwordMessage h5 {
  margin: 0px;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: -35px;
  content: "✔";
}

/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: -35px;
  content: "✖";
}

/*******************************************
    choose account type page (and setup)
********************************************/

.reg-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5em;
  font-size: 1em;
  line-height: 1.5;
}
.reg-card-title,
.reg-card-button {
  text-align: center;
}
.reg-card-title img {
  width: 200px;
  max-width: 100%;
}
.reg-card-details {
  flex: 1 0 auto;
}
.reg-card-ul {
  margin-bottom: 2.5em;
}
.reg-card-ul > li {
  margin: 5px 0;
}
.reg-card-button .reg-btn {
  width: 100%;
  max-width: 300px;
  font-size: 1.125em;
  line-height: 1.444;
}

@media screen and (min-width: 768px) {
  .reg-card-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .reg-card {
    flex: 0 0 calc(50% - 1.25em);
  }
  .reg-card-title img {
    width: 300px;
  }
}

@media screen and (min-width: 1200px) {
  .reg-card {
    flex-basis: calc(25% - 1.875em);
  }
}

/*******************************************
    setup page
********************************************/

@media screen and (min-width: 1200px) {
  .setting-up .reg-card-container {
    max-width: calc(50% - 1.25em);
    margin: 0 auto;
  }

  .setting-up .reg-card {
    flex-basis: calc(50% - 1.25em);
  }
}

/*********************************************
    Create Organization styles
*********************************************/

.error-message {
  max-width: 700px;
  margin: 0 auto 1.25em auto;
  color: #d94e41;
  font-weight: 700;
  /*padding: 0.7em;
	margin: 0 auto 1.25em auto;
	z-index: 100;
	color: #fff;
	border-radius: 5px;
	width: 50%;
	animation-name: error;
	animation-duration: 10s;
	animation-fill-mode: forward;
	-webkit-animation-fill-mode: forwards;
	background-color: #d94e41;
	text-align: center;*/
}

.hide-class {
  display: none;
}

/*@keyframes error {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}*/
