* {
	font-family: "proxima-soft", "Proxima Soft", "Proxima Nova Soft", Helvetica, Arial, sans-serif
}

body {
	margin: 0;
	padding: 0;
	background: #3d3d3d;
}

.wrapper {
	height: 100vh;
}

a {
	text-decoration: none;
	color: black;
}


.top {
	background: #1f1f1f;
	color: #bcbcbc;
	width: 100%;
	height: 110px;
}

.container {
	height: 100%;
	margin: 0 auto;
	max-width: 1400px;
	display: flex;
	align-items: center;
}

.top .title {
	margin-left: 25px;
	display: flex;
	flex-direction: column;
}

.top .title span:nth-of-type(2) {
	font-size: 35px;
	margin-top:-14px;
	font-weight: bold;
}

.content {
	height: auto;
	margin: 25px auto 0;
	max-width: 420px;
}

.content #login {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.content #login input {
	outline: 0;
    display: block;
    background: #9b9b9b;
    width: 100%;
    border: 0;
    border-radius: 4px;
    padding: 12px 20px;
	margin: 10px 0;
    color: rgba(0,0,0,.6);
    font-size: 14px;
    line-height: inherit;
    box-sizing: border-box;
}

.content #login #submit {
	width: 100%;
    height: 50px;
    background: #3693eb;
    margin-top: 25px;
    border-radius: 4px;
    color: white;
    text-align: center;
	border: 0;
	cursor: pointer;
}

.content #login #response-box {
	width: 100%;
	height: 16px;
	text-align: center;
	color: #cd5c5c;
	margin-top: 25px;
}