@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/Roboto-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Roboto-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Roboto-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/RobotoCondensed-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/RobotoCondensed-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/RobotoCondensed-Bold.ttf') format('truetype');
}

* {
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	min-height: 1200px;
	min-height: 100vh;
	background-color: #ebe5da;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
}

a, .Link {
	color: #3071A9;
	text-decoration: underline;
}

a:hover, .Link:hover {
	text-decoration: none;
}

.Link {
	display: inline;
	cursor: pointer;
	border: 0;
	background: none;
}

.Body {
	width: 100%;
	margin: 0;
	background-color: white;
	border-radius: 4px;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.12);
}

.Header {
	background: #fdb500;
	border-bottom: 5px solid #2f2f2f;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.12);
}

.Header h1 > a {
	display: block;
	height: 57px;
	padding: 20px 0 22px;
	background: url(logo.png) center no-repeat;
}

.Header h1 > a > span {
	display: none;
}

.Content {
	padding: 40px 58px;
	text-align: center;
}

.Content>h2 {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 35px;
	font-family: 'Roboto Condensed', sans-serif;
}

.Content>form, .Content>p, .Content>div {
	margin-top: 15px;
	margin-bottom: 30px;
}

.Content .Form {
	text-align: left;
}

.Login__social {
	margin: 5px 0 10px;
}

.Login__social .Login__button {
	position: relative;
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 15px;
	margin: 5px 0 10px;
	text-align: left;
	font-size: 15px;
	font-weight: bold;
	background-color: white;
	color: black;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.Login__social button.Login__button {
	border: 1px solid #F1F2F5;
	border-radius: 2px;
	box-shadow: 0 0 1px 0 rgba(0,0,0,0.12), 0 1px 1px 0 rgba(0,0,0,0.24);
	cursor: pointer;
}

.Login__social .Login__button form {
	position: absolute;
	top: 50%;
	padding: 10px;
	right: 0;
	margin: 0;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.Login__social .Login__google {
	padding-left: 55px;
	background: url(google.svg) 10px center no-repeat;
	background-size: 40px 40px;
}

.Login__social .Login__facebook {
	padding-left: 55px;
	background: url(facebook.svg) 10px center no-repeat;
	background-size: 40px 40px;
}

.Login__social .Login__spotify {
	padding-left: 55px;
	background: url(spotify.svg) 10px center no-repeat;
	background-size: 40px 40px;
}

.Help {
	color: rgba(39,40,58,0.5);
}

.FormGroup, .FormCheck {
	margin: 10px 0 20px;
}

.FormGroup label {
	display: block;
	width: 100%;
	font-weight: bold;
	margin: 5px 0 0;
}

.FormGroup > input[type=email],
.FormGroup > input[type=password] {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 15px 10px;
	margin: 5px 0 10px;
	font-size: 15px;
	background: rgba(242,242,245,0.3);
	border: 1px solid rgba(47,47,47,0.3);
	border-radius: 5px;
}


.Form__validated input[type=email]:valid,
.Form__validated input[type=password]:valid {
    background-image: url(check.svg);
    background-position: right 10px center;
    background-size: 25px 25px;
    background-repeat: no-repeat;
}

.FormGroup > p {
	color: rgba(39,40,58,0.5);
	margin: -5px 0 10px;
}

.FormGroup > button[type=submit] {
	box-sizing: border-box;
	display: block;
	width: 100%;
	padding: 15px;
	margin: 5px 0 10px;
	font-size: 15px;
	font-weight: bold;
	color: white;
	background: #3170AA;
	border: 1px solid rgba(47,47,47,0.1);
	border-radius: 5px;
	cursor: pointer;
}

.FormGroup > button[type=submit]:hover,
.FormGroup > button[type=submit]:active,
.FormGroup > button[type=submit]:focus {
	background-color: #2a6495;
}

.FormGroup > a.Button {
	color: #333333;
	background-color: #ffffff;
	border-color: #cccccc;
	
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 15px;
	margin: 5px 0 10px;
	text-decoration: none;
	font-size: 15px;
	font-weight: bold;
	border: 1px solid rgba(47,47,47,0.1);
	border-radius: 5px;
	cursor: pointer;
}

.FormGroup > a.Button:hover,
.FormGroup > a.Button:active,
.FormGroup > a.Button:focus {
    background-color: #fff0ca;
    border-color: #ffc431;
}

.FormCheck {
	padding-left: 1.25rem;
	position: relative;
}

.FormCheck > label > input[type=checkbox] {
    position: absolute;
    margin-top: .2rem;
    margin-left: -1.25rem;
}

.Error {
	padding: 15px;
	margin-bottom: 18px;
	border: 1px solid transparent;
	border-radius: 4px;
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}

.Warning {
	padding: 15px;
	margin-bottom: 18px;
	border: 1px solid transparent;
	border-radius: 4px;
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}

.Success {
	padding: 15px;
	margin-bottom: 18px;
	border: 1px solid transparent;
	border-radius: 4px;
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6;
}

.Hidden {
	display: none !important;
}

@media (min-width:480px) {
	.Body {
		width: 465px;
		margin-top: 20px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width:480px) and (min-height:800px) {
	.Body {
		margin-top: 60px;
	}
}

@media (max-width:400px) {
	.Content {
		padding: 40px 7.5%;
	}
}
