.register-form-wrapper{
    margin: auto;
    width: 330px;
    min-height: 300px;
    margin-bottom: 40px;
}

.register-form-wrapper h3{
    color: #666;
    margin: 20px auto 20px auto;
}

.register-form .login-with{
    border-left: 1px solid #ddd;
}

.register-form select,
.register-form input[type="text"] {
    height: 44px;
    background: #fff;
    width: 330px;
    font-size: 14px;
    box-shadow: 1px 1px 3px #ccc;
    font-family: Helvetica, serif;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.register-form select:hover,
.register-form input[type="text"]:hover{
    border: 1px solid #00ADEF;
}

.register-form button {
    border:0;
    background: orangered;
    color: #fff;
    box-shadow: 2px 2px 6px #777;
    cursor: pointer;
    font-family: Helvetica, serif;
    font-size: 18px;
    padding: 12px;
    border-radius: 0.5em;
}

.register-form button:hover{
    background: #ff0f00;
}

.register-form .form-row{
    margin-top: 12px;
}

.register-form .form-row:last-child{
    margin-top: 25px;
}

.register-form label{
    font-size: 16px;
}

.register-form input[type="checkbox"]{
    width: 15px;
    height: 15px;
}

.required-field-hide{
    display: none;
}

.required-field-show{
    display: block;
    font-size: 16px;
    color:red;
}

.require-red-border{
    border:1px solid red !important;
}

.register-form-disabled{
    background: #888 !important;
}

@media screen and (max-width: 768px) {
    .register-form-wrapper{
        margin: auto 10px auto 8%;
    }

    .demo-create-header h3{
        font-size: 1.6em;
    }
}

@media screen and (max-width: 320px ){
    .register-form input[type="text"] {
        width: 280px;
    }
}