

/* ==========================================================================
   Nicks's custom styles
   ========================================================================== */

body,html {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: 'Lato', sans-serif;
}

main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-container {
  width: 960px;
  
}

.logo {
    padding-bottom :25px;
}

.img-holder {
    height: 590px;
    min-height: 590px;
    max-width: 950px;
    border: 1px solid black;
    padding: 0;
    position: relative;
}

 .img-holder:before {
	content: " ";
  position: absolute;
  z-index: -1;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  /*background: url(../img/marjorie.jpg);*/
	background-size: cover;
}

.img-holder form {
	width: 226px;
	position: absolute;
	right: 100px;
	top: 70px;
}

.img-holder form .form-group {
	margin-bottom: 10px;
}

.img-holder form .form-control {
	border: 1px solid #b5b3b3;
	background-color: rgba(51, 51, 51, .75);
	color: #fff;
	font-size: 16px;
	height: 46px;
}

.img-holder form .logo {
	width: 140px;
	margin: 0 auto 20px;
}

.btn-login {
	width: 100%;
	height: 46px;
	font-size: 20px;
	font-weight: bold;
	background-color: #bad535;
	border-color: transparent;
	text-shadow: none;
	background-image: none; 
	transition: all 0.3s ease 0s;
}

.login-control {
    background-color: rgb(250, 255, 189) !important;
    background-image: none !important;
    color: rgb(0, 0, 0) !important;
    width: 100%;
    height: 46px;
    font-weight: bold;
    transition: all 0.3s ease 0s;
}

.panel-login {
        padding-top  :100px;
}

.img-holder form .btn-default:hover {
    background-color: #bee01f;
    border-color: transparent;
    transition: all 0.3s ease 0s;
}

input[type="text"]:focus,
input[type="password"]:focus,
.btn:focus, .btn:active:focus, .btn.active:focus {
	border-color: rgba(187, 217, 49, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(187, 217, 49, 0.6);
  outline: 0 none;
}

::-webkit-input-placeholder {color: #ccc;}
:-moz-placeholder { /* Firefox 18- */ color: #ccc;}
::-moz-placeholder {  /* Firefox 19+ */ color: #ccc;}
:-ms-input-placeholder {color: #ccc;}

.disclaimer {
	width: 90%;
	margin: 20px auto;	
	color: #999;
}

.disclaimer .left {
	float: left;
	padding: 15px 0 0;
}

.disclaimer .right {
	float: left;
	padding: 15px 0 0 40px;
}

@media only screen and (max-width : 815px) {
	main .disclaimer .left {
		float: none;
		padding: 15px 0 0;
	}

	main .disclaimer .right {
		float: none;
		padding: 0;
	}
}

@media only screen and (max-width : 768px) {
	main .img-holder form {
		right: 30px;
	}
}

@media only screen and (max-height : 735px) {
	main {
		height: auto;
	}
}

@media only screen and (max-width : 480px) {
	main .img-holder:before {
		background: #333;
		background-image: none !important;
	}
	main .img-holder form {
		position: relative;
		right: 0;
		top: 150px;
		margin: 0 auto;
	}
}










