
.login-wrap {
	position: relative;
	z-index: 999;
}

#toggle-login {
	position:relative;
	text-align: center;
	color: #333;
}

#login{
	width:400px;
	position: absolute;
	top: 20px;
	display: none;
}

@media screen and (max-width: 765px) {
  #login{
    max-width: 350px;
  }
}

#triangle{
  width:0;
  border-top:12x solid transparent;
  border-right:12px solid transparent;
  border-bottom:12px solid #fff;
  border-left:12px solid transparent;
  margin:0 auto;
}


#login_form {
  background:#ffffff;
  padding:6% 4%;
  border: 1px solid #DDD;
}



.align-left {
	float:left;
	margin-left: 10px;
}

.align-right {
	float:right;
	margin-right: 10px;
}

.display-error {
	color:#E63131;
}

.display-error {
    -webkit-transition: text-shadow 1s linear;
    -moz-transition: text-shadow 1s linear;
    -ms-transition: text-shadow 1s linear;
    -o-transition: text-shadow 1s linear;
    transition: text-shadow 1s linear;
}

.display-error.login-error-msg-glow {
    text-shadow: 0 0 20px red;
}

/* CSS for PWA install banner */
/* ------------------------------ */
.pwa-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: white;
	padding: 10px;
	z-index: 1000;
	min-height: 80px;
	border-radius: 10px;
	box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 100%;
}

.pwa-banner-text{
    font-size: 18px;
}

.pwa-close-banner-btn {
    position: absolute; 
    top: 10px; 
    right: 10px; 
    background: none; 
    border: none; 
    font-size: 30px;
    color: black;
}

.pwa-install-btn{
    font-size: 16px;
    border-radius: .25rem;
    height: 34px;
    background-color: #3ac47d;
    color: black;
}

.pwa-not-now-btn{
    font-size: 16px;
    border-radius: .25rem;
    height: 34px;
    background-color: #d3d3d3;
    color: black;
}
/* ------------------------------ */