/* 
* Login form css styling
* Author: hearnshawj, singha
*/

#login_icon {
    float: right; 
    padding-right: 15px; 
    padding-top: 18px; 
    font-size: 20px;
    color: white;
}

.jBox-title { background: #121212; }
 
#profile_icon {
    float: right; 
    padding-right: 10px; 
    padding-top: 18px; 
    font-size: 20px;
    color:#51CE7B;
    /*color: orange;*/
}

#KnetSubmit, #KnetSpacelogin {
    width: 100%;
    background: #51CE7B;
    border: 1px solid #51CE7B;
    font-size: 20px;
    margin-top: 15px;
    padding: 8px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    text-shadow: 0px 1px 0px #dimgrey;
    -webkit-transform: perspective(0.5px) translateZ(0);
    transform: perspective(0.5px) translateZ(0);
    box-shadow: 0 0 0.5px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
    box-shadow: inset 0 0 0 1px #51CE7B, 0 0 0px rgba(0, 0, 0, 0);
}

#KnetSubmit:hover, #KnetSubmit:focus, #KnetSubmit:active, #KnetSpacelogin:hover, #KnetSpacelogin:focus, #KnetSpacelogin:active {
    background: #38c768;
    box-shadow: inset 0 0 0 2.5px #38c768, 0 0 0px rgba(0, 0, 0, 0);
}

#KnetSubmit, #KnetSpacelogin a:hover {
    color:white;
    /*color: darkorange;*/
    text-decoration:none;
}

#email, #password input[type=text],[type=password] {
    width: 97.7%;
    height: 34px;
    padding-left: 5px;
    margin-bottom: 20px;
    margin-top: 8px;
    box-shadow: 0 0 5px #51CE7B;
    border: 0.5px solid #51CE7B;
    color: #121212;
    font-size: 18px;
    font-weight:bold;
}

/* sign out button */
.knetButton {
    background-color: white; 
    color: #121212; 
    border: 2px solid #f44336;
    padding: 5px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 2px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
}

.knetButton:hover {
    background-color: #f44336;
    color: white;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  margin-left: 10px;
  display: inline-block;
  width: 60px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 0px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #51CE7B;
}

input:focus + .slider {
  box-shadow: 0 0 1px #51CE7B;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}

/* The switch - the box around the slider */
.switch-off {
  position: relative;
  margin-left: 10px;
  display: inline-block;
  width: 60px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch-off input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider-off {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider-off:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 0px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}


/* Rounded sliders */
.slider-off.round {
  border-radius: 24px;
}

.slider-off.round:before {
  border-radius: 50%;
}

a { cursor: pointer; }

a {
    text-decoration:none;
    color:#51CE7B;
    /*color:darkorange;*/
}
