html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
	line-height: 1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}
nav ul {
    list-style:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	outline: none;
}

input, select {
    vertical-align: middle;
}
table, tbody, tfoot, thead, tr, th, td {
	 vertical-align: top;
}
body {
	background: #f1f1f3;
	color: #444;
	font: normal normal 17px/25px "Roboto", sans-serif;
	line-height: 1.4;
}
html, body{
  min-height: 100%;
}
#container {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items:center;	
}

#content {
	width: 400px;
	background: #fff;	
	padding: 30px 50px 40px 50px;
	box-shadow: 0 0 40px rgba(0,0,0,0.1);
	overflow: hidden;
	position: relative;
}

#inner_content {
	display: flex;	
	width: 900px;
	position: relative;
	left: 0;
	transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
	
}
#inner_content.remind {
	left: -450px;
}
#login_content,
#reminder_content {
	width: 400px;
	margin-right: 50px;
	transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

#inner_content.remind #login_content,
#reminder_content  {
	opacity: 0;	
}

#inner_content.remind #reminder_content,
#login_content  {
	opacity: 1;	
}

#logo {
	margin-bottom: 15px;	
}

h2 {
	font-size: 24px;
	text-transform: uppercase;	
	margin-bottom: 20px;
	text-align: center;
	font-weight: 300;
	font-family: 'Roboto Slab';
}
/** table **/
table {
	background: #f1f1f3;
	border: 1px solid #eee;
	border-radius: 5px;
	width: 100%;
	margin-bottom: 20px;
}
table tr td {
	text-align: left;	
	vertical-align: top;
	padding: 3px 15px;	
}
table tr td:first-of-type  {
	padding-left: 30px !important;
}
table tr td:last-of-type  {
	padding-right: 30px !important;
}
table tr:first-of-type td {
	padding-top: 20px;
}
table tr:last-of-type td {
	padding-bottom: 20px;
}

/** form inputs and controls **/
input {
	font-family: inherit;
	color: #444;
	font-size: inherit;
}
input[type='text'], 
input[type='email'], 
input[type='password'] {
	box-sizing: border-box;
	border: 1px solid #A5ACB2;
	padding: 2px 3px;
	border-radius: 3px;
	font-size: 15px;
	line-height: 22px;
	width: 100%;
}

/* remember me? */
#remember_label {
	font-size: 15px;	
}
/** button **/
p.button {
	text-align: right;
	margin-bottom: 20px;	
}
p.button input {
	border: none;
	display: inline-block;
	background: #888;
	color: #fff;
	text-decoration: none;
	padding: 5px 12px !important;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
	font-weight: 700;
	text-transform: uppercase;
}
p.button input:hover{
	background: #333;
	
}

p.align_center {
	text-align: center;	
}
/** forgotten your details **/
#reminder_link {
	margin-bottom: 20px;
}
#reminder_link a,
#back {
	color: #444;
	text-decoration: underline;
	cursor: pointer;
	
}

/** small-print **/
.smallprint {
	border-top: 1px dashed #999;
	padding-top: 15px;
	font-size: 14px;
	color: #999;
}
.smallprint a {
	color: #444;
}

/* error */
p.error {
	background-image: url(../../_shared/_img/dialogue/dialog_error.png);	
	background-repeat: no-repeat;
	background-size: 38px auto;
	background-position: 0 top;
	padding: 4px 50px 24px 48px;
}

#remind_response {
	padding-bottom: 20px;
}
#back {
	padding-bottom: 20px;
}

/** back to main site */
p.back_button {
	padding-top: 20px;	
	text-align: center;
}
p.back_button a {
	border: 1px solid #aaa;
	display: inline-block;
	background: #f9f9f9;
	color: #777;
	text-decoration: none;
	padding: 3px 8px !important;
	transition: all 0.1s ease-in-out;
	cursor: pointer;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.9em;
}
p.back_button a:hover{
	background: #aaa;
	color: #fff;
}