/*Admin Register CSS*/
* {
    padding: 0;
    margin: 0;
}

body {
    background: #EEEEEE;
}

.section {
    width: 100%;  
    position: relative;  
}

.topbar {
    background: #1b0344;
    width: 100%;    
    height: 50px;
    color: #fff;
}

.topbar ul {
    display: block;     
    float: right;    
    margin-right: 50px;
}

.topbar ul li  {
    display: inline-block;
    list-style-type: none;
    padding-top: 10px;
    padding-right: 10px;    
    cursor: pointer;
}

.topbar ul li:hover {
    color: yellow;
}

.menu-bar {
    background: #fff;
    width: 100%;
    height: 108px;
    display: flex;    
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 120px;       
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.menu-bar .logo img {    
    width: 70px;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.menu-text {    
    font-family: 'bruno ace', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #1b0344;
    padding: 10px;
}

#contact-admin {
    position: absolute;
    margin-top: 8px;
    left: 30px !important;
    background: red;
    border-radius: 5px;
    display: none;
}

#contact-admin p {
    padding-top: 15px;
    padding-right: 10px;
    padding-left: 10px;
    color: #fff;
}

.login-main {
    width: 100%;
    background: #EEEEEE;
    margin-top: 10px !important;
}

.login-main-inner {
    width: 65%;
    margin: 0 auto;
    display: flex;
}

.login-main-inner-l {
    background: #fff;
    height: 450px;
    width: 500px;
    margin: 60px 0;
    padding-top: 50px;
    padding-left: 50px;
    padding-bottom: 50px;
}

.login-main-inner-l p {
    margin-top: 30px;
    font-family: 'lato', sans-serif;
    font-weight: 400;
    font-size: 27px;
    color: #1b0344;
}

p.login-main-inner-lb {
    margin-top: -18px;
    font-family: 'lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: rgb(51, 51, 51);
}

.login-main-inner-l form input[type=text] {
    width: 420px !important;
    height: 45px;
    margin-top: 20px;
}

.login-main-inner-l form input[type=password] {
    width: 420px !important;
    height: 45px;
    margin-top: 20px;
}

.login-main-inner-l form input[type=submit] {
    width: 420px !important;
    height: 45px;
    margin-top: 20px;
}

.login-main-inner-l form input[type=submit]:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.login-main-inner-l hr {
    width: 420px;
    border: 1px solid rgb(197, 196, 196);
}

p.forgot-password {
    margin-top: 10px;
    font-family: 'lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: rgb(51, 51, 51);
    cursor: pointer;
}

p.forgot-password a {
    text-decoration: none;
    color: rgb(51, 51, 51);
}

p.forgot-password a:hover {
    color: #1b0344;
}

.login-main-inner-r {
    background: #fff;
    margin: 60px 0;
    padding: 30px;    
}

.login-main-inner-r img {
    margin-top: 5px;
    width: 430px;
    height: 380px;
}

.form-group {
    margin-bottom: 10px;
}

.bottom-section {
    background-color: navy;
    height: 40px;
    z-index: 5000;
    padding-top: 10px;
}

.bottom-section p {
    font-family: 'lato', sans-serif;
    color: #fff;
    text-align: right;
    padding-right: 30px;
}


/*Guest Registration Form*/

.guest_reg_form {
    width: 45% !important;
     margin: 0 auto 0 auto !important;
}

.guest_reg_form form input[type=text], input[type=email], input[type=password], input[type=submit] {
    width: 550px !important;
    height: 45px !important;
}

.guest_reg_form .text-span {
    margin-left: 155px !important;
}


/*Mobile Version*/

@media only screen and (max-width: 600px) {
    .guest_reg_form {
        width: 100% !important;
    }

.guest_reg_form form input[type=text], input[type=email], input[type=password], input[type=submit] {
        width: 338px !important;
        height: 45px !important;
    }
    .guest_reg_form .text-span {
        margin-left: 25px !important;
    }
    .menu-bar {
        padding-left: 20px;
    }
    .menu-bar .logo img {    
        width: 60px;
    }
    .menu-text {    
        font-weight: 600;
        font-size: 17px;
    }
    .login-main-inner {
        width: 100%;
    }
    .login-main-inner-l {
        width: 92%;
        margin: 30px auto 30px auto;
        padding-top: 20px;
        padding-left: 20px;
    }
    .login-main-inner-l hr {
        width: 90%;
    }
    .login-main-inner-l form input[type=text], input[type=password], input[type=submit] {
        width: 95% !important;
    }
    .login-main-inner-l form input[type=password] {
        width: 95% !important;
    }
    .login-main-inner-l form input[type=submit] {
        width: 95% !important;
    }
    .login-main-inner-r {
        display: none;
    }
    .bottom-section p {
        text-align: center;
        padding-right: 0;
    }
}