*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    max-width: 100%;
}
body{
    background-color: rgb(255, 255, 255);
}
.container{
    max-width: 1200px;
    margin: auto;
}
label{
    color: #333;
    font-size: 13px;
}
input, textarea, select, button{
    padding: 12px;
    display: block;
    margin: 5px auto;
    outline: none;
    border-radius: 8px;
    border: 1px solid #999;
}
input, textarea, select{
    width: 100%;
    font-size: 14px;
}
button{
    cursor: pointer;
}
.primeBtn{
    background-color: #ffb700;
    color: #fff;
    border: none;
    box-shadow: 0 0 10px -7px #333;
    transition: .2s;
    padding: 12px 16px;
}
.primeBtn:hover{
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #ffb700;
}
.primeBtn:active{
    transform: scale(.94);
}
.smallBtn{
    font-size: 11px;
    padding: 6px 12px;
}
.blueBtn{
    background-color: #008cff;
    color: #fff;
    border: 0;
}
fieldset{
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}
legend{
    background-color: ivory;
    font-weight: bold;
    padding: 10px 16px;
    color: #333;
    border-left: 3px solid #ffb700;
}
a{
    text-decoration: none;
    color: #7582f9;
}
a:hover{
    color: #333;
}
.flex{
    display: flex;
}
.flex-row{
    flex-direction: row;
}
.flex-col{
    flex-direction: column;
}
.flex-align-center{
    align-items: center;
}
.flex-jc-center{
    justify-content: center;
}
.flex-jc-sb{
    justify-content: space-between;
}
.inp-cont{
    margin-bottom: 40px;
    position: relative;
}
.inp-mes{
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 12px;
}
.red{
    color: #f00;
}
.green{
    color: rgb(0, 194, 0);
}
.top-cont{
    background-color: #ffb700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    padding: 7px;
    font-size: 14px;
}
#menu{
    padding: 8px 15px;
    border: none;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    transition: .1s;
}
#menu:hover{
    box-shadow: 0 0 0 2px #ffb700, 0 0 0 3px #fff;
}
#menu:active{
    opacity: .9;
}
.top-link-cont{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    display: none;
}
.top-link-cont a{
    width: 100%;
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 3px;
    transition: .2s;
    display: inline-block;
}
.top-link-cont a:hover{
    box-shadow: 0 0 0 1px #fff;
}
.top-link-cont a:active{
    transform: scale(.9);
}
.topSave{
    display: none;
}
.logo-cont{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    border-bottom: 1px solid #ccc;
    padding: 13px;
}
.logo-cont a{
    width: 50%;
    max-width: 300px;
}
.logo-cont h2{
    font-weight: initial;
    font-size: 13px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    background-color: #ffb700;
    color: #fff;
    padding: 10px;
    border-radius: 15px;
}
main{
    background-image: url('../../s1/img/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 10px;
}
.main-content{
    max-width: 1100px;
    margin: auto;
    border: 1px solid #ccc;
    border-top: none;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 10px 20px -10px #000;
    border-radius: 9px;
}
.nav-cont{
    padding: 20px;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-cont a{
    color: #777;
}
.nav-cont span{
    color: #ffb700;
}
.regForm{
    width: 100%;
    max-width: 600px;
    margin: auto;
}
.form-title{
    font-weight: initial;
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    text-align: center;
}
.regSuc{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: #0f0;
    padding: 20px 0;
}
.regSuc .fa{
    font-size: 48px;
}
.pwdC{
    position: relative;
}
.pwd{
    padding-right: 58px;
}
#showPwd{
    position: absolute;
    right: 1px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #eee;
    color: #666;
    line-height: 40px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    width: 48px;
    text-align: center;
    cursor: pointer;
}
#showPwd:hover{
    color: #333;
}
.loginC{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.lpImg{
    width: 100%;
    max-width: 600px;
}

@media only screen and (min-width: 600px) {
    .logo-cont h2{
        font-size: 16px;
    }
    .top-cont{
        flex-direction: row;
    }
    .top-link-cont{
        flex-direction: row;
        gap: 0;
        display: initial !important;
        width: initial;
    }
    .top-link-cont a{
        width: initial;
        padding: 3px 10px;
    }
    #menu{
        display: none;
    }
}
@media only screen and (min-width: 791px) {
    .topSave{
        display: initial;
    }
}
@media only screen and (min-width: 900px) {
    .logo-cont{
        flex-direction: row;
    }
    .logo-cont h2{
        border-left: 5px solid #ffb700;
        padding: 36px 20px;
        margin-left: 20px;
        background-color: transparent;
        border-radius: 0;
        color: #ffb700;
        font-size: 24px;
    }
    .loginC{
        flex-direction: row-reverse;
    }
}
.afLogin{
    border-top: 5px solid #ffb700;
    border-bottom: 5px solid #ffb700;
}
.loggedInMsg{
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #eee;
    border-radius: 10px;
}
.loggedInMsg p{
    font-size: 18px;
}
.nowrap{
    white-space: nowrap;
}
.sbhr{
    margin: 10px auto;
    border: none;
    height: 1px;
    background-color: #ccc;
}

.popupCont{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px) hue-rotate(40deg);
}
.popupCont img{
    border-radius: 10px;
    max-width: 80%;
    border: 5px solid #09ff00;
    box-shadow: 0 0 20px -10px #333;
    max-height: 80%;
}


/*INDEX CSS*/

.indTitle{
    color: #fff;
    background-color: #ffb700;
    border-left: 0 solid #ffffff;
    padding: 30px;
    clip-path: polygon(0 0, 100% 0, 80% 90%, 0 100%);
    border-radius: 30px 0 0 30px;
    transition: .2s;
    margin: 10px auto;
}
.indTitle:hover{
    border-left-width: 20px;
}
.futer{
    background: linear-gradient(89.7deg, rgb(255, 255, 77) -10.7%, rgb(244, 218, 86) 88.8%);
    padding: 10px;
}

.footer{
    display: flex;flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.footCol{
    max-width: 400px;
    padding: 20px;
}
.footCol h1{
    margin-bottom: 20px;
}
.cname{
    color: #6ba400;
}
.footerTable td{
    padding: 10px;
    line-height: 20px;
}
.footerCopyright{
    text-align: center;
    padding: 10px;
    color: #ff5613;
    font-weight: bold;
}
@media only screen and (min-width:800px) {
    .footer{
        flex-direction: row;
        align-items: flex-start;
    }
}
/* pin management */
.activateUserCont{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.1);
}
.userActCont{
    background-color: #fff;
    width: 100%;
    max-width: 600px;
    border: 2px solid #ccc;
    padding: 10px;
}