body {
    background: url('../img/background01.jpg') no-repeat fixed center center;
    background-size: cover;
    font-family: Montserrat;
	color: #202020;
}

.logo {
    width: 500px;
    height: 300px;
    background: url('../img/game_logo.png') no-repeat;
    margin: 0 auto;
}

.form-block {
    width: 320px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    border-top: 5px solid #ff656c;
    margin: 0 auto;
}

.form-block h1 {
    text-align: center;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}

.form-block input {
    width: 100%;
    height: 42px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: Montserrat;
    padding: 0 20px 0 50px;
    outline: none;
}

.form-block input#username {
    background: #fff url('../img/username_icons.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.form-block input#username:focus {
    background: #fff url('../img/username_icons.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.form-block input#password, .form-block input#password1, .form-block input#password2 {
    background: #fff url('../img/password_icons.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.form-block input#password:focus, .form-block input#password1:focus, .form-block input#password2:focus {
    background: #fff url('../img/password_icons.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.form-block input#email {
    background: #fff url('../img/email_icons.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.form-block input#email:focus {
    background: #fff url('../img/email_icons.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.form-block input:active, .form-block input:focus{
    border: 1px solid #ff656c;
}

.form-block button {
    width: 100%;
    height: 40px;
    background: #ff656c;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #e15960;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    font-family: Montserrat;
    outline: none;
    cursor: pointer;
}

.form-block button:hover {
    background: #ff7b81;
}