@charset "utf-8";

.container {
    height: 100%;
	height:100vh;
}


.logo {
    width: 150px;
    height: 79px;
    margin: 30px auto;
}

.register-block {
    padding: 1.5em;
    background: #fff;
    border-radius: 5px;
    border-top: 5px solid #ff656c;
}

.register-block h1 {
    text-align: center;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}

.register-block input[type="text"], .register-block input[type="password"], .register-block input[type="email"], .register-block select{
    height: 30pt;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 10pt;
    font-size: 16px;
	padding: 0 10px 0 10px;
    outline: none;
}

.register-block input:active, .register-block input:focus, select:active, .register-block select:focus {
    border: 1px solid #ff656c;
}

.register-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;
    outline: none;
    cursor: pointer;
}

.register-block button:hover {
    background: #ff7b81;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.form-label{
	display:inline-block;
	padding-right:5pt;
	width:8em;
}

