    form.registration-form.input-error {
        border-color: #ff3333;
    }
    body{
        /*background: #ddd;*/
        background: url("../images/bglogin.jpg");
        overflow: hidden;
    }

    .content_custome{
        width: 500px;
        margin:20px auto;
        background: linear-gradient(to bottom, rgba(61, 182, 206, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
        transform: scale(1);
    }


    .content_custome .content{
        padding-top: 0px;
        padding-bottom: 5px;

    }

    .content_custome .register-logo{
        margin-bottom: 0;
    }

    .layout_form{
        max-height: 340px;
        margin-bottom: 10px;
        overflow-x:hidden; 
    }
    
    .form-bottom{
        overflow-y: auto;
    }

    .text_header{
        font-family: "Open Sans", Arial, sans-serif;
        font-size: 20px;
        margin:0px;
        margin-bottom: 5px;
         
    }

    .logo img{
        width: 60px;
        max-width: 60px;
        margin-right:5px;
    }

     /* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   speak for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */

    .modalLoading {
        display:    none;
        position:   fixed;
        z-index:    1000;
        top:        0;
        left:       0;
        height:     100%;
        width:      100%;
        background: rgba( 255, 255, 255, .8 ) 
                    url('../images/loadingblue.gif') 
                    50% 50% 
                    no-repeat;
    }

    /* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
    body.loading {
        overflow: hidden;   
    }

    /* Anytime the body has the loading class, our
       modal element will be visible */
    body.loading .modalLoading {
        display: block;
    }

    @media screen and (max-width: 500px) {
        .content_custome{
            width: 100%;
        }   

        body{
                overflow: auto;
            }    

        .layout_form{
            max-height: inherit;
            overflow-x:hidden; 
        } 
    }

    .reguser-form label.error{
        color: red;
        width:auto;
        display:inline;
    }
    
    .reguser-form input.error{
        border : 1px solid #ff3333;
    }

    sup{
        color:red;
    }