﻿/* Desktops */
@media screen and (min-width: 770px){
/* DO THIS */
.LoginLogo {
  height:8vw;
}
.close {
  font-size: 45px;
}
.login-button {
  font-size: 1.4vw;
}
.login-links {
	font-size: 1.4vw;
}
}/* END Desktops */
/* Mobile landcape and Tablets */
@media screen and (min-width: 601px) and (max-width: 769px){
/*DO THIS*/
.LoginLogo {
  height:20vw;
}
.close {
  font-size: 65px;
}
.login-button {
  font-size: 2.0vw;
}
.login-links {
	font-size: 1.4vw;
}
}/* END Mobile landcape and Tablets */
/* Mobile portrait */
@media screen and (max-width: 600px){
/*DO THIS*/
.LoginLogo {
  height:20vw;
}
.close {
  font-size: 50px;
}
.login-button {
  font-size: 2.5vw;
}
.login-links {
	font-size: 0.9vw;
}
}/* END Mobile portrait */
/* All Screen Sizes */
/*DO THIS*/

.loginlinks {
	color: #999999;
	text-decoration: none;
	font-weight: bold;
	white-space: nowrap;
}
a.loginlinks:hover {
	color: #ee4d9b;
}

.LoginLogo {
  position:relative;
  width:40%;
  left:30%;
  background-image: url("../images/logo.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 112;
  /*border: 1px solid #ffffff;*/
}
.close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #fff;
  font-weight: bold;
}
.close:hover, .close:focus {
  color: #999;
  cursor: pointer;
}



input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.login-popup-button {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

button:hover {
  opacity: 0.8;
}

.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
}

img.avatar {
  width: 20%;
  border-radius: 50%;
}

.container {
  padding: 16px;
}

.login-button {
  display: inline-block;
  border-radius: 8px;
  background-color: #222b31;
  border: 3px solid #ee4d9b;
  color: #FFFFFF;
  text-align: center;
  padding: 15px;
  width: 50%;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
  position:relative;
  left:25%;
  
}

span.psw {
  float: right;
  padding-top: 16px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #000000;
  margin: 5% auto 0% auto;
  border: 1px solid #888;
  width: 30%;
}

@media (max-width: 768px) {
  .modal-content {
    margin: 5% auto 0% auto;
    width: 90%;
  }
}

.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
}

@keyframes animatezoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@media screen and (max-width: 300px) {
  span.psw {
    display: block;
    float: none;
  }
}

@media screen and (max-width: 300px) {
  .cancelbtn {
    width: 100%;
  }
}

.btn-login {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

