@import "https://use.fontawesome.com/releases/v5.5.0/css/all.css";

body {
  /* background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(126, 213, 111, 0.5)), to(rgba(40, 180, 133, 0.8))), url("img//bg_sky.jpg"); */
  background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(126, 213, 111, 0.5)), to(rgba(40, 180, 133, 0.8))), url("img//bg_sky.jpg");
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.5)), url("../img//bg_sky.jpg");
  background-size: cover;
  background-position: top;
  background-repeat:no-repeat;
  height: 100vh;
  width: 100vw;
  font-family: 'Montserrat';
  margin:0;
  padding:0;
  width:100%;
}

.login-box {
  /* color: #4caf50; */
  background-color: rgba(255, 255, 255, 1);
  width: 350px;
  position: absolute;
  top: 50%;
  left: 50%;
  /*background-image: url("../img/loginBox_bg.jpg");*/
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  color:rgb(5, 83, 32);
  box-shadow: 0.5px 0.5px 10px rgb(5, 83, 32);
  padding:10px 30px 50px 30px;
  border-radius: 5px;
  margin: 0 auto;
}

.login-box h1 {
  font-weight: bold;
  float: left;
  padding-bottom: 8px;
  font-size: 20px;
  /*border-bottom: 2px solid rgb(5, 83, 32);*/
  border-radius: 3px;
  /*margin-bottom: 30px;
  padding: 13px 0 0 0;
  margin-top:5px;
  border:dashed 2px yellow;*/
}

.textbox {
  width: 100%;
  overflow: hidden;
  font-size: 20px;
  /*padding: 8px 0;*/
  margin: 8px 0 40px 0;
  border-bottom: 1px solid rgb(5, 83, 32);
}

.textbox i {
  width: 26px;
  float: left;
  text-align: center;
}

.textbox input {
  border: none;
  outline: none;
  background: none;
  color: black;
  font-size: 18px;
  width: 80%;
  float: left;
  margin: 0 10px;
}

.btn {
  width: 100%;
  background-color: rgb(19, 100, 67);
  /*border: 2px solid rgb(5, 83, 32);*/
  box-shadow: 0 0 3px 2px #055320; /* middle magenta */
  color: white;
  padding: 5px;
  font-size: 18px;
  cursor: pointer;
  margin: 12px 0;
  border-radius: 30px;
}

.btn:hover {
	background-color: rgb(19, 154, 67);
	font-weight:bold;
	color:white;
	border-radius: 30px;
}

.forgotPassID a {
  display: block;
  text-decoration: none;
margin-top: 10px;
font-size:12px;
color: rgb(5, 83, 32);
text-align: center;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(169, 169, 169, .8);
}

.forgotPassID a:hover {
  display: block;
  text-decoration: none;
margin-top: 10px;
font-size:12px;
color: rgb(5, 83, 32);
text-align: center;
font-weight: bold;
}

.footerText {
  display: flex;
  justify-content: center;
  align-content: center;
  position:absolute;
  bottom:0;
  font-size: 12px;
  letter-spacing: 2px;
  color:white;
  width:100%;
  font-weight: bold;
  margin-bottom: 20px;
}

.topForm_login {
  /*border:dashed 2px red;*/
  display:flex;
  justify-content: space-between;
  align-items:  center;
  padding-bottom: 50px;
}

.topForm_image {
  /*border:dashed 2px blue;*/ /* These borders are To DEBUG*/
  width: 58px;
  height: 48px;
  color: black;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.help-block {
	display: inline-block;
	font-size:1.2rem;
}



@media (max-width: 500px){
  .login-box {
    
    width: 200px;
    
  }

  .textbox i {
    
    width: 5px;
    
  }
  
  .textbox input {
    margin-left: 10px;
    font-size: 15px;
    
  }

  .footerText{
    flex-direction: column;
    text-align: center;
    font-size: 10px;
  }
  #optionalFooter {
    display: block;
    margin-top: 5px;
  }

  #pipe {
    display: none;
  }
}