#login-form {
    box-shadow:0 1px 1px 0 rgba(0,0,0,0.14), 0 1px 1px -1px rgba(0,0,0,0.12), 0 1px 1px 0 rgba(0,0,0,0.2);
    margin-top:70px;
    border-radius:5px;
    overflow:hidden;
}

form h2 {
  text-align:center;
  margin-top:10px;
  margin-bottom:15px;
  color:#23a7ff;
}

input[type=text], input[type=password], input[type=email] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    /*border: 1px solid #ccc;*/
    border:1px solid #d0dcff;
    /*border:none;*/
    border-radius:3px;
    /*background:#d0dcff;*/
    box-sizing: border-box;
}

button {
    /*background-color: #4CAF50;*/
    background:#396bb7;
    color: white;
    /*padding: 14px 20px;*/
    padding:7px 15px;
    font-size:15px;
    border-radius:3px;
    /*margin: 8px 0;*/
    margin-top:10px;
    border: none;
    cursor: pointer;
    /*width: 100%;*/
    box-shadow:0 1px 1px 0 rgba(0,0,0,0.14), 0 1px 1px -1px rgba(0,0,0,0.12), 0 1px 1px 0 rgba(0,0,0,0.2);
}

button:hover {
    opacity: 0.8;
}

#login, #login-text {
    padding: 16px;
    background-color: #FFF;
}

span.psw, span.copyright {
	padding-top: 10px;
    padding-bottom: 10px;
}

span.psw {
    float: right;
}

span.copyright {
	float: left;
}

.help-block {
	/*color: red;*/
  color:white!important;
  background:#ff5959;
  padding:10px;
  border-radius:3px;
  margin-bottom:7px;
}

#login-meta {
  padding-top:7px;
  padding-bottom:7px;
  background:white;
  border-top:1px solid #CCC;
}

#forgot-password-container {
	margin-top: 100px;
}

#forgot-password-container form {
	border: none!important;
}

#forgot-password-container form button {
	padding-top: 8px;
	padding-bottom: 8px;
	margin: 0!important;
}

.btn-back {
	border-radius: 0!important;
	padding-top: 6.8px;
	padding-bottom: 6.8px;
	width: 100%;
}

.align-right {
	text-align: right!important;
}

.panel-heading {
	/*color: #f90!important;*/
  color:#23a7ff!important;
  font-size:17px;
}

.forget-password-footer {
	background-color: #eee;
	padding-top: 5px;
	padding-bottom: 5px;
	border: 1px solid #d3e0e9;
}

.btn-wrap {
	margin-bottom: 10px;
	padding: 0!important;
}

.clear-bold {
	font-weight: normal!important;
}

.checkbox {
  /*display: block;*/
  /*position: relative;*/
  padding-left: 35px;
  /*margin-bottom: 12px;*/
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  float:right;
  margin-top:17px;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
}

/* Create a custom checkbox */

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #FFF;
  border: 1px solid #CCC;
}

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.panel {
  /*box-shadow:0 1px 1px 0 rgba(0,0,0,0.14), 0 1px 1px -1px rgba(0,0,0,0.12), 0 1px 1px 0 rgba(0,0,0,0.2);*/
	border: 1px solid #d2d2d2;
  border-radius:3px;
}

@media (min-width: 1200px) {
	.login-container {
		width: 380px;
	}
	.btn-wrap button, .btn-wrap a span {
		width: 90%!important;
	}
}

@media (max-width: 768px) {
    form {
    	padding-left: 10px;
    	padding-right: 10px;
    	border: none!important;
    }
    .row h2 {
    	padding-left: 10px;
    }
}