/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 80px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #555151c4;
  margin: 5px auto; /* 15% from the top and centered */
  border: 1px solid rgba(97, 97, 97, 0.432);
  width: 50%;  /* Could be more or less, depending on screen size */
  border-radius: 5%;
}

/* The Close Button */
.close {
  /* Position it in the top right corner outside of the modal */
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
  background-color: rgb(26, 37, 34);
}

/* Close button on hover */
.close:hover, .close:focus {
  color: red;
  cursor: pointer;
  border: 2px solid rgba(97, 97, 97, 0); 
  border-radius: 3px;
}

body {
  font-family: Arial,Helvetica,sans-serif;
  background-color: #c2f0ed;
}

input[type=text], input[type=password] {
  width:100%;
  padding:12px 20px;
  margin: 8px 0px;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

button {
  background-color: #2d552f;
  color: white;
  padding: 14px 20px;
  margin: 8px 0px;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
  font-size: 1.2em;

}

button:hover {
  opacity: 0.7;
}

.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
  border-radius: 3px;
  font-size: 1.1em;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

span.psw {
  float : right;
  padding-top: 16px;
}

.imgcontainer {
  text-align: center;
  margin: 24px 0px 12px 0px;
  position: relative;
}

img.avater {
  width: 20%;
  border-radius: 50%;
}

.container {
  padding: 10px;
}

label {
  font-family : Verdana,sans-serif;
}

span.login {
  color : gray;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  transition: border 1s ease-in;
  padding: 5px;
  margin: 4px;
}

span.login:hover{
  opacity: 0.7;
  color: lightblue;
  border: 2px solid #e4dede;
  border-radius: 5px;
  transform: scale(1.3);
}

li.login {
  display: inline-block;
  color: rgba(209, 195, 195, 0.932);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  transition: border-bottem 1s ease-in;
  font-size: 1.15em;
  cursor: pointer;
}

label {
  font-family : Verdana,sans-serif;
  font-size : .875em;
}

input[type=submit], input[type=reset] {
  background-color : #2121FF;
  border : none;
  color : white;
  padding : 12px 6px;
  margin : 4px 2px;
  cursor : pointer;
  border-radius : 4px;
}

input[type=text]:focus {
  border : 2px solid #555;
}
.container > h4{
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 500px;
  font-size: 1.2em;
  padding-left: 1em;
  color: #080103;
  border-radius: 3px;
}


