body {
	margin: 0;
	background: #edf1ff;
	font-family: Calibri, sans-serif;
}

.block {
	background: #fff;
	padding: 25px;
    border-radius: 10px;
}

.auth {
    display: block;
    width: 90%;
    max-width: 350px;
    margin: 20vh auto 0 auto;
}

h3 {
	text-align: center;
}

h2 {
	margin-top: 0px;
    text-align: center;
}

form {
	display: grid;
}

input {
	margin-bottom: 10px;
	border: 1px solid #30689f;
    padding: 10px;
    border-radius: 5px;
}

button {
	padding: 10px;
	background: #30689f;
	color: #fff;
	border-radius: 5px;
	border: none;
	cursor: pointer;
}

button:hover {
	background: #2a5580;
}

.auth button {
	margin-bottom: 25px;
}

.menu {
	width: 100%;
    padding: 15px;
    background: #30689f;
    text-align: center;
}

.menu a {
	margin: 0 15px;
    text-decoration: none;
    color: #fff;
}

.menu a:hover {
    color: #30689f;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}

.row {
	display: flex;
    justify-content: space-around;
	margin-bottom: 30px;
}

.templates {
	max-width: 1024px;
    margin: 0 auto;
    margin-top: 50px;
}

.template {
    background: #000;
    width: 300px;
    height: 280px;
    border-radius: 5px;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    -webkit-box-shadow: 0px 0px 8px 2px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 8px 2px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 8px 2px rgba(34, 60, 80, 0.2);
}

.template:hover {
	margin-top: -5px;
}

.app-menu {
	background: #fff;
    width: 350px;
    height: 100%;
    position: fixed;
    -webkit-box-shadow: 0px 0px 8px 2px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 8px 2px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 8px 2px rgba(34, 60, 80, 0.2);
}

.app-photo {
	position: absolute;
    left: 35%;
    background-size: cover;
}

.form-control {
	margin: 0 auto;
    display: block;
    width: 90%;
}

.form-control p {
	margin-bottom: 5px;
	margin-top: 0px;
}

.form-control input {
	width: 290px !important;
}

.form-control button {
	width: 312px;
    margin-top: 5px;
}

.btn-light {
	margin-top: 10px !important;
    background: #d5d9e5 !important;
    color: #626773;
}

.btn-light:hover {
	background: #c1c6d6 !important;
}

button:disabled {
    cursor: context-menu;
	background: #5c8ab6;
}