.login-container
{
	position: relative;
	z-index: 2;
}

.login-wrapper
{
	width: 533px;
	height: 409px;
	margin-top: 13%;
	margin-left: 13%;
	background-color: #ffffff;
	border-radius: 5px;
	opacity: 0.9;
}

.login-title,
.forgot-title
{
	height: 6rem;
	text-align: center;
	padding: 1rem .75rem 1rem;
}

.forgot-title
{
	margin-bottom: 1.5rem;
}

.login-title h1,
.forgot-title h1
{
	font-family: Ubuntu, sans-serif;
	font-size: 35px;
	font-weight: 300;
	color: #22262D;
}

.forgot-title small
{
	font-family: Ubuntu, sans-serif;
	color: #959595;
}

.input-container
{
	height: 7.5rem;
	text-align: center;
	margin-bottom: 2.5rem;
}

.usernameContainer
{
	margin-bottom: 2.5rem;
}

.usernameContainer,
.passwordContainer,
.emailContainer
{
	position: relative;
}

.input-container input {
	border-bottom: 1px solid #959595;
	border-top: none;
	border-left: none;
	border-right: none;
	font-size: 15px;
	font-weight: 300;
	line-height: 0;
	color: #333333;
	width: 65%;
	height: 35px;
    font-family: Ubuntu, sans-serif;
}

.input-container label {
    font-family: Ubuntu, sans-serif;
    position: absolute;
	color: #959595;
    left: 17.5%;
	-webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
}

.input-container label.inputfilled,
.input-container input:focus + label {
    top: -20px;
    font-size: 13px;
}

.input-container label.inputempty
{
    top: 5px;
	font-size: 15px;
}


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ffffff;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #ffffff;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #ffffff;
}
:-moz-placeholder { /* Firefox 18- */
  color: #ffffff;
}

.input-container input:focus
{
	border-color: rgb(70, 70, 70);
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(70, 70, 70, 0.6);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(70, 70, 70, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(70, 70, 70, 0.6);
	outline: 0 none;
}

.button-container
{
	height: 8rem;
	text-align: center;
}

.sign-in-button {
	background-color: #26ACE5;
	color: #fffffF;
	border: none;
	font-size: 15px;
	font-weight: 600;
	padding: .75rem 3.5rem;
	border-radius: 20px;
    font-family: Ubuntu, sans-serif;
	cursor: pointer;
}

.forgot-pass-container
{
	margin-top: 5px;
}

.forgot-pass-container a {
	text-decoration: none;
	color: #424242;
	font-size: 15px;
	font-weight: 300;
    font-family: Ubuntu, sans-serif;
}

.errorMessage
{
    display: block;
    margin-top: 10px;
    font-family: Ubuntu;
    font-size: 13px;
    color: red;
}

.successMessage {
    display: block;
    margin-top: 10px;
    font-family: Ubuntu;
    font-size: 13px;
    color: green;
}

.errorContainer 
{
    margin-bottom: 1rem;
}

#bg {
  position: fixed; 
  top: -50%; 
  left: -50%; 
  width: 200%; 
  height: 200%;
}
#bg img {
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  margin: auto; 
  min-width: 50%;
  min-height: 50%;
}

@media screen and (max-width: 700px) {
    .login-wrapper
	{
		width: 90%;
		height: inherit;
		margin: 50% auto 0;
	}
}

@media screen and (max-width: 443px) {
    .forgot-title
	{
		margin-bottom: 4.5rem;
	}
}