﻿/* Basic styling */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: sans-serif;
    font-size: 16px;
    background-color: #f5eae0;
    background-size: cover;
    background-position: center;
}

nav {
    background: #f5eae0;
    padding: 0 15px;
}

a {
    color: #FFA500;
    text-decoration: none;
}

.menu,
.submenu {
    list-style-type: none;
}

.logo {
    font-size: 1.5rem;
    padding: 7.5px 10px 7.5px 0;
    font-weight: bold;
}
.logoimg {
   max-width:250px;
   width:100%;
}

.backofficeTabContainer {
    min-width: 50%;
    font-family: Calibri;
}
.backofficeButton {
    margin:5px;
    width:100px;
}
.backofficeTextbox {
    margin: 5px;
    width: 413px;
    border: 1px solid #ccc;
    padding: 0.5em 2.5em 0.5em 0.5em;
    font-weight: bold;
    font-size: 1.0rem;
}
.footer {
   bottom: 15px;
    justify-content: center;
    align-items: center;
    width:100%;
    display:flex;
    z-index:0;
    
}
.copyright {
    bottom: 3px;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    font-size:xx-small;
}
.gvPagerCss span {
    background-color: #DEE1E7;
    font-weight: bold;
    color: red;
}

.gvPagerCss td {
    padding-left: 5px;
    padding-right: 5px;
}
    .item {
        padding: 10px;
        color: white;
    }

    .item.button {
        padding: 9px 5px;
    }

    .item:not(.button) a:hover,
    .item a:hover::after {
        color: #ccc;
    }


.slogan_flex {
    display: flex;
    align-items: center;
    margin-left: 10%;
    margin-right: 10%;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center
}
.slogan {
    padding-top: 10px;\
}

.title_home {
    color: #04ccc4;
    margin-bottom: 10px;
}

.title_home1 {
    margin-bottom: 20px;
}

.img_flex {
    display: flex;
    width:100%;
}

.action_btn {
    background-color: #ffa500;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
    width: 100px;
}

.btn {
    padding: 15px;
    background: #ffa500;
    color: #fff;
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 120px;
    margin: 20px auto 0;
    border-radius: 30px;
    display: flex;
    justify-content: center;
}

.login_box {
    position: relative;
    width: 400px;
    height: 440px;
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform .5s ease, height .2s ease;
    margin: 0 auto;
}

.wrapper {
    position: relative;
    width: 400px;
    height: 440px;
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden\;
    transition: transform .5s ease, height .2s ease;
    z-index:1;
}

.d-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
}

.wrapper.active {
    height: 520px;
}

.wrapper .form-box {
    width: 100%;
    padding: 40px;
}

    .wrapper .form-box.login {
        transition: transform .18s ease;
        transform: translateX(0);
    }

.wrapper.active .form-box.login {
    transition: none;
    transform: translateX(-400px);
}

.wrapper .form-box.register {
    position: absolute;
    transition: none;
    transform: translateX(400px);
}

.wrapper.active .form-box.register {
    transition: transform .18s ease;
    transform: translateX(0);
}



.form-box h2 {
    font-size: 2em;
    color: orange;
    text-align: center;
}


.input-box {
    position: relative;
    width: 100%;
    height: 28px;
    border-bottom: 2px solid black;
    margin: 30px 0;
    display: flex;
    width:85%;
}
    .input-box label {
        position: absolute;
        top: 50%;
        left: 5px;
        transform: translateY(-50%);
        font-size: 1em;
        color: black;
        font-weight: 500;
        pointer-events: none;
    }

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: black;
    font-weight: 600;
    padding: 0 35px 0 5px;
}


.textBoxWatermark {
    font-size: 1em;
    color:#aeabab;
}

/* Mobile menu */
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

    .menu li a {
        display: block;
        padding: 15px 5px;
    }

    .menu li.subitem a {
        padding: 15px;
    }

.toggle {
    order: 1;
    font-size: 20px;
}

.item.button {
    order: 2;
}

.item {
    order: 3;
    width: 100%;
    text-align: center;
    display: none;
}

.active .item {
    display: block;
}

.button.secondary {
    /* divider between buttons and menu links */
    border-bottom: 1px #444 solid;
}

/* Submenu up from mobile screens */
.submenu {
    display: none;
}

.submenu-active .submenu {
    display: block;
}

.has-submenu i {
    font-size: 12px;
}

.has-submenu > a::after {
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    line-height: 16px;
    font-weight: 900;
    content: "\f078";
    color: white;
    padding-left: 5px;
}

.subitem a {
    padding: 10px 15px;
}

.submenu-active {
    border-radius: 3px;
}

/* Tablet menu */
@media all and (min-width: 700px) {
    
   
    .menu {
        justify-content: center;
    }

    .logo {
        flex: 1;
    }
    .logoimg {
        max-width: 250px;
        width: 100%;
    }
    .item.button {
        width: auto;
        order: 1;
        display: block;
    }

    .toggle {
        flex: 1;
        text-align: right;
        order: 2;
    }
    /* Button up from tablet screen */
    .menu li.button a {
        padding: 10px 15px;
        margin: 5px 0;
        color:white;
    }

    .button a {
        background-color: #ffa500;
        color: #fff;
        padding: 0.5rem 1rem;
        border: none;
        outline: none;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
        cursor: pointer;
        transition: scale 0.2 ease;
        width: 100px;
    }

    .button.secondary {
        border: 0;
    }

        .button.secondary a {
            background:#fce2b2;
            border: 1px #FFA500 solid;
            color: #FFA500 !important;
        }

    .button a:hover {
        text-decoration: none;
    }

    .button:not(.secondary) a:hover {
        background: #04ccc4;
        border-color: #FFA500;
    }
}
/* Desktop menu */
@media all and (min-width: 960px) {
   
    .menu {
        align-items: flex-start;
        flex-wrap: nowrap;
        background: none;
    }

    .logo {
        order: 0;
    }

    .logoimg {
        max-width: 550px;
        width: 100%;
    }
    .item {
        order: 1;
        position: relative;
        display: block;
        width: auto;
    }

    .button {
        order: 2;
    }

    .submenu-active .submenu {
        display: block;
        position: absolute;
        left: 0;
        top: 68px;
    }

    .toggle {
        display: none;
    }

    .submenu-active {
        border-radius: 0;
    }
}

