/* -----Auth Forms----- */
button {
	background-color: rgb(14, 14, 14);
	border: none;
}

.auth_section {
	display: flex;
	justify-content: center;
	min-width: 100vw;
	min-height: 75vh;
	max-height: 80vh;
	text-align: center;
	margin: 2% 0;/*5%*/
	color: #FFF;
}

.password_section {
	margin: 10% 0;
}

.card {
  position: relative;
  width: 425px;
  height: 550px; /*450px*/
  margin-top: 15px; /*30px*/
	background-color: rgb(14, 14, 14);
	border-radius: 8px;
	padding: 5% 0;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	overflow: scroll;
}

.recaptcha {
	margin-left: 13.5%; 
	margin-top: .5em;
}

.card_title {
	margin-bottom: 1em;
	padding-bottom: .75em;
}

.password_card {
	padding: 10% 0 !important;
}

.activeAuth {
  background-color: transparent;
  overflow: hidden;
  color: #ffd700;
}

.inactiveAuth {
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  color: #ffffff;
}

.btn{  
  border-radius: 4px;
  height: 40px;
  font-size: 13px;
  font-weight: 450;
  text-transform: uppercase;
  padding: 0 20px;
  letter-spacing: 1px;
	margin-top: .75em;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  text-align: center;
  border: none;
  background-color: rgba(16,39,112,.8);
  color: white;
 /* box-shadow: 0 4px 16px 0 rgba(255,235,167,.2);*/
}
.btn:active,
.btn:focus{  
  background-color: #102770;
  color: #ffd700;
  box-shadow: 0 4px 16px 0 rgba(16,39,112,.2);
}
.btn:hover{  
  background-color: #102770;
  color: #ffd700;
  box-shadow: 0 4px 16px 0 rgba(255,235,167,.2);
}

.error-message {
	/*opacity: 70%;
	display: inline-flex;
	align-items: center;
	justify-content: center;*/
	color: #FF0000;
	position: relative;
}

.font-form{
	background-color: rgb(31, 41, 55); 
	color: white; 
	font-family: 'Poppins', sans-serif;
	font-weight: 500; 
	font-size: 1rem; 
	line-height: 1.2rem;
	text-align: center;
	margin-bottom: .5em;
}

/* -----Password Popup----- */
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: rgb(14, 14, 14);
	border: 2px solid #ffd700;
  border-radius: 5px;
  width: auto;
  position: relative;
  transition: all 5s ease-in-out;
	color: white;
}

.popup h2 {
  margin-top: 0;
  color: #FFF;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 10px;
  right: 20px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}
.popup .close:hover {
  color: #ffd700;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

/* -----Responsive----- */
@media (max-width: 300px){
	.card {
		min-height: 70vh;
	}
	.font-form{
		max-width: 60vw;
	}
}
@media (max-width: 480px){
	.card {
		width: 80vw;
		height: 65vh;
	}
	.recaptcha {
		margin-left: 2%;
	}
}
