@import url('https://fonts.googleapis.com/css?family=Raleway');
body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    color: #F2F2F2;
}

#container-login {
    background-color: #FCFCFC;
    position: relative;
    top: 20%;
    margin: auto;
    width: 340px;
    height: 445px;
    border-radius: 0.35em;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.25);
    text-align: center;
}

#container-register {
    background-color: #FCFCFC;
    position: relative;
    top: 20%;
    margin: auto;
    width: 340px;
    height: 480px;
    border-radius: 0.35em;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.25);
    text-align: center;
}

#title {
    position: relative;
    background-color: #53A7D8;
    width: 100%;
    padding: 20px 0px;
    border-top-left-radius: 0.22em;
    border-top-right-radius: 0.22em;
    font-size: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lock {
	position: relative;
	top: 2px;
}

.input {
	margin: auto;
    width: 240px;
    border-radius: 4px;
    background-color: #ededed;
    padding: 8px 0px;
    margin-top: 15px;
}

.input-addon {
	position: relative;
	top: -2px;
    float: left;
    background-color: #ededed;
    border: 1px solid #ededed;
    padding: 4px 8px;
	color: #757575;
    border-right: 1px solid #757575;
}

input[type=checkbox] {
	cursor: pointer;
}

input[type=text] {
	color: #949494;
    margin: 0;
    background-color: #ededed;
    border: 1px solid #ededed;
    padding: 6px 0px;
    border-radius: 3px;
}

input[type=text]:focus {
    border: 1px solid #ededed;
}

input[type=password] {
	color: #949494;
    margin: 0;
    background-color: #ededed;
    border: 1px solid #ededed;
    padding: 6px 0px;
    border-radius: 3px;
}

input[type=password]:focus {
    border: 1px solid #ededed;
}

input[type=email] {
	color: #949494;
    margin: 0;
    background-color: #ededed;
    border: 1px solid #ededed;
    padding: 6px 0px;
    border-radius: 3px;
}

input[type=email]:focus {
    border: 1px solid #ededed;
}

.forgot-password {
    position: relative;
    bottom: 0%;
}

.forgot-password a:link {
    color: #f7c899;
    text-decoration: none;
}

.forgot-password a:visited {
    color: #f7c899;
    text-decoration: none;
}

.forgot-password a:hover {
    color: #449494;
    transition: color 1s;
}

.privacy {
    margin-top: 5px;
    position: relative;
    font-size: 12px;
    bottom: 0%;
}

.privacy a:link {
    color: #eaa05b;
    text-decoration: none;
}

.privacy a:visited {
    color: #eaa05b;
    text-decoration: none;
}

.privacy a:hover {
    color: #549494;
    transition: color 1s;
}

*:focus {
    outline: none;
}

.remember-me {
    margin: 10px 0;
}

input[type=submit] {
    padding: 6px 25px;
    background: #53A7D8;
    color: #fff;
    font-weight: bold;
    border: 0 none;
    cursor: pointer;
    border-radius: 3px;
}

.register {
	margin: auto;
    padding: 16px 0;
    text-align: center;
    margin-top: 40px;
    width: 85%;
    border-top: 1px solid #C1C3C6;
}

.clearfix {
	clear: both;
}

#register-link {
    margin-top: 10px;
    padding: 6px 25px;
    background: #53A7D8;
    color: #fff;
    font-weight: bold;
    border: 0 none;
    cursor: pointer;
    border-radius: 3px;
}

#auth-msg {
    color: green;

}