
/**
 * CSS
 */

html, body, div, dl, dt, dd, h1, h2, h3, pre, form, label, fieldset, input, p, blockquote, th, td { margin:0;padding:0; }
ol, ul { margin:0;padding:10px 10px 10px 30px; }
table { border-collapse:collapse;border-spacing:0; }
fieldset, img { border:0; }
:active, :focus { outline:0; }
acronym { cursor:help;border-bottom:1px dotted #ccc; }
button, label { cursor:pointer; }
textarea { overflow: auto; }
p { margin: 10px 0; }
img, iframe {vertical-align: middle;}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* Global */
html {
	height: 100%;
}
body {
	font: normal 12px 'Roboto Slab', serif;
	color: #6d6e71;
	background-color: #e4e5e6;

	position: relative;
	min-height: 100%;
}
a,
a:link,
a:visited {
	color:#E64244;
	text-decoration: underline;
}
a:active,
a:hover {
	color:#E64244;
	text-decoration: none;
}

table {
	font-size: 11px;
}
table th,
table td {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.wrap {
	width: 440px;
	margin: 0 auto;
	padding: 50px 0;
}

footer {
	position: absolute;
	padding: 20px;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
}

.ui-message {
	background: #fde7e7;
	color: #f0615b;
	border-radius: 3px;
	margin-bottom: 20px;
	padding: 10px;
	font-size: 14px;
	text-align: center;
}
.ui-message li {
	text-align: left;
}
.ui-message-error {
	background: #fde7e7 !important;
	color: #f0615b !important;
}
.ui-message-success {
	background:#ECF7E9 !important;
	color:#80C96D !important;
}
.ui-message-warning {
	background: #fff0e0 !important;
	color: #ff9a2e !important;
}
.ui-message-info {
	background: #e1f2fb !important;
	color: #37a5e4 !important;
}

.ui-input {
	border: 1px solid #6d6e71;
	font-size: 13px;
	padding: 10px 15px;
	border-radius: 33px;
	width: 100%;
}
.ui-button {
	background: #71ccd4;
	border: 1px solid #71ccd4;
	font-size: 13px;
	padding: 10px 15px;
	border-radius: 33px;
	color: #fff;
	font-weight: bold;
}
.ui-button:hover,
.ui-button:active {
	background: #66c1c9;
	border: 1px solid #66c1c9;
}
.ui-button-red {
	background: transparent;
	border: 1px solid #e83539;
	font-size: 13px;
	padding: 10px 15px;
	border-radius: 33px;
	color: #e83539;
	font-weight: bold;
	text-decoration: none !important;
}

.new-account {
	text-align: center;
	padding: 35px 0;
	font-size: 14px;
}
.new-account p {
	padding: 10px 0;
}
.new-account h3 {
	font-size: 48px;
	font-weight: 100;
	margin: 0 -100px;
}
.new-account .ui-button-red {
	font-size: 2em;
	border-width: 2px;
}

.login-form {
}
.ui-form-block {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ui-form-block dd {
	margin: 10px 0 20px;
}
.ui-form-bottom-loader {
	float: right;
}
.ui-form-bottom-buttons {
	margin-bottom: 0 !important;
}
.ui-form-error .ui-input {
	border-color: #e83539;
}

.mobile-menu {
	display: block;
	float: left;
	font-size: 30px;
	padding: 5px;
	margin-right: 15px;
	line-height: 1em;
	margin-left: -5px;
	cursor: pointer;
}
.logo {
	display: block;
	padding: 30px;
}
.logo a {
	display: block;
}
.logo img {
	width: 176px;
}
.user-icon {
	float: right;
}

.box {
	padding: 30px;
	background: #fff;
	-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
	-moz-box-shadow:    0 0 5px 0 rgba(0, 0, 0, 0.05);
	box-shadow:         0 0 5px 0 rgba(0, 0, 0, 0.05);
	border-radius: 15px;
}
.box .box-title {
	margin: -30px -30px 0 -30px;
	padding: 20px 30px;
	border-bottom: 1px solid #e6e7e7;
	margin-bottom: 30px;
	font-size: 24px;
}

@media screen and (max-width: 768px) {
	.wrap {
		padding-top: 0;
	}
	.new-account h3 {
		font-size: 36px;
		margin: 0;
	}
}

@media screen and (max-width: 500px) {
	.wrap {
		width: 95%;
	}
}