/*
Template Name: DreamAdmin
Author: Rory Kranendonk
Author URI: http://www.dreamwire.nl
Version: 1.0
*/

/* //////////////////// LAYOUT \\\\\\\\\\\\\\\\\\\\ */

* {
    box-sizing: border-box;
}

html, body {
	margin : 0;
	padding : 0;
	background-image : url(../img/admin/back-website.gif);
	background-repeat : repeat;
	height : 100%;
        color: #505151;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
}


img {border : 0;}

.wrapper {
	width : 100%;
        margin-bottom: 80px;
}

.top {
    margin-top: 40px;
    position: relative;
}


.top  h1{
	background-repeat : no-repeat;
        margin-bottom: 20px;
}

.logo {
    height: 85px;
}

.container {
	position : relative;
	margin : 0 auto;
	width : 442px;
}

.box {
	float : left;
	display : inline;
        background: #FFF;
        border-radius: 2px;
        box-shadow: 0 1px 0 0 rgba(0,0,0,.1);
        border: 1px solid #EFEFEF;
}

.box-header {
    padding: 35px 35px 30px 35px;
    text-transform: uppercase;
    color: #505151;
    font-size: 18px;
    border-radius: 5px 5px 0 0;
    border-bottom: 1px solid #CCC;
    text-transform: uppercase;
    
   
}

.box .content {
    padding: 30px 35px 30px;
    overflow: hidden;
}

.box .content label{
    line-height : 1.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}


.forgot {
    float: right;
    font-size: 13px;
    color: #505151;
    text-decoration: none;
}


/* FORM */

.input {
    margin-bottom: 10px;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

input[type=text], input[type=password] {
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 2px;
    color: #555555;
    display: inline-block;
    font-size: 15px;
    height: 40px;
    line-height: 20px;
    margin-bottom: 10px;
    padding: 4px 10px;
    vertical-align: middle;
    width: 100%;
}

.submit {
    float: left;
    margin-top: 10px;
}
input[type=submit] {
    background-color: #676868;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    padding: 10px 20px;
    text-align: center;
    vertical-align: middle;
    border: none;
    border-radius: 2px;
}

.success, #authMessage {
    display: block;
    padding: 20px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 2px;
}

.success {
    background-color: #f6faf0;
    border: 1px solid #6aa500;
    color: #6aa500;
}

#authMessage {
    background-color: #fbf0f0;
    border: 1px solid #b80000;
    color: #b80000;
}

.box-new-account {
    padding: 20px;
    position: relative;
    clear: both;
    text-align: center;
    line-height: 20px;
}

.box-new-account a {
    color: #4ba862;
    text-decoration: none;
    font-size: 16px;
}

.caps {
    float: right;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 200ms ease-in-out;
}

.caps.on {
    opacity: .6;
}
