@font-face{
    font-family: 'quicksand';
    src: url(../Quicksand/static/Quicksand-Light.ttf);
    font-style: normal;
}
@font-face{
    font-family: 'quicksand-bold';
    src: url(../Quicksand/static/Quicksand-Bold.ttf);
    font-style: normal;
}
*{
    margin: 0;
    padding: 0;
    font-family: 'quicksand', sans-serif;
    /* background-color: #E9F1F7; */
}
.loader-spin-wrapper{
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9;
}

.loader-spin-wrapper svg{
    display: block;margin: 0;
    animation: rot-1 2s linear infinite;
}
.loader-spin-wrapper svg circle{
    stroke: #fff;
    fill: none;
    stroke-dashoffset: 0;
    animation: rot-2 1.5s ease-in-out infinite;
}
@keyframes rot-1{
    100%{
        transform: rotate(360deg);
    }
}
@keyframes rot-2{
    0%{
        stroke-dasharray: 1,150;
        stroke-dashoffset: 0;
    }
    50%{
        stroke-dasharray: 100,150;
        stroke-dashoffset: -20;
    }
    100%{
        stroke-dasharray: 100,150;
        stroke-dashoffset: -124;
    }
}
.top-bar{
    padding: 20px;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #ccc;
    width: 100%;
}
.top-bar .items{
    font-family: 'quicksand-bold';
}
.container{
    display: flex;
    position: relative;
    height: 100vh;
    overflow: scroll;
}
.container .side-bar{
    width: 250px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #fff;
    font-weight: 500;
    padding: 20px 10px 0;
    background-color: #2274A5;
    position: relative;
    transition: .2s ease-in;
    gap: 10px;
}
.container .side-bar .pop-up{
    width: 100%;
    position: absolute;
    bottom: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    left: 0;
    flex-direction: column;
}
.container .side-bar .pop-up span{
    font-size: 15px;
    padding: 10px ;
    background-color: rgb(34, 34, 34);
}

.container .side-bar a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}
.container .side-bar.collapse{
    display: none;
    align-items: start;
}
.container .side-bar.collapse img{
    height: 40px;
}
@media (max-width: 500px){
    .container .side-bar{
        width: 0;
        left: -180px;
        position: absolute;
    }
    .container .side-bar.toggle{
        left: 0;
        width: 60%;
    }
}
.container .side-bar img{
    width: 100%;
    height: 100px;
    object-fit: contain;
}
 .admin-title{
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 10px 0;

    }
.admin-title .icon{
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  flex-shrink: 1;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(13, 71, 161, .9), rgba(66, 165, 245, 1));
}
.admin-title .text{
  display: flex;
  flex-direction: column;
}
.admin-title .text h1{
  font-size: 15px;
  margin: 0;
}
.admin-title .text p{
  font-size: 14px;
  text-wrap: nowrap;
}
.lines {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
}
.container .side-bar .holder-flex{
    display: flex;
    gap: 5px;
}

.container .side-bar .live-link{
    width: 90%;
    background: rgba(255, 255, 255, 0.1);
    border-left: 2px solid #fff;
    border-radius: 4px;
    padding: 10px;
    
}
.container .side-bar .holder-flex .icon{
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .side-bar .holder-flex .icon i{
    font-size: 15px;
    color: #fff;
}
 .container .side-bar.collapse .holder-flex .icon i{
    margin-left: 10px;
 }
  .container .side-bar.collapse .text{
    display: none;
  }
.container .side-bar.collapse .title{
    display: none;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}
.container .content{
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 10px 10px 30px;
    height: 100vh;
    overflow: scroll;
}
.container .content .profile-container-inview{
    width: 95%;
    padding: 20px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.container .content .profile-container-inview .form{
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
}
.container .content .profile-container-inview hr{
    margin-top: 20px;
    margin-bottom: 20px;
}
.container .content .profile-container-inview .pro-wrapper-input{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 30%;
}
@media(max-width: 520px){
    .container .content .profile-container-inview .form{
        display: flex;
        flex-direction: column;
    }
    .container .content .profile-container-inview .pro-wrapper-input{
        width: 100%;
    }
}
.container .content .profile-container-inview .pro-wrapper-input input{
    background-color: #c9c9c949;
    border-radius: 20px;
    border: none;
    padding: 20px 0px 20px 20px;
    width: 90%;
}
.container .content .profile-container-inview .submit input{
    padding:10px 28px;
    color: #fff;
    border-radius: 6px;
    border: none;
    font-size: 18px;
      background: linear-gradient(135deg, rgba(13, 71, 161, .9), rgba(66, 165, 245, 1));
}
.container .content .profile-container-inview h1{
    margin-bottom: 20px;
}
.container .content .flex-bars{
    display: flex;
    margin: 2px 0 20px;
    padding: 10px 0;
    align-items: center;
    gap: 10px;
}
.container .content .flex-bars .content-box-flex{
    flex: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(255,255,255,0.5));
    height: 150px;
    border-radius: 4px;
    padding: 20px;
}
.container .content .flex-bars .content-box-flex .header-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container .content .flex-bars .content-box-flex .header-top h1{
    font-size: 14px;
    font-size: #ccc;
    font-family: 'quicksand-bold';
}
.container .content .flex-bars .content-box-flex .header-top .metrics{
    padding: 10px;
    border-radius: 32px;
    background-color: #ccc;
    display: flex;
    align-items: center;
    color: #fff;
    gap: 5px;
    font-family: 'quicksand-bold';
}
.container .content .flex-bars .content-box-flex .numbers{
     font-family: 'quicksand-bold';
     font-size: 40px;
     margin-bottom: 10px;
     color: #ccc;
}
.container .content .flex-bars .content-box-flex .data-grow{
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.container .content .flex-bars .content-box-flex .data-grow p{
    font-family: 'quicksand-bold';
}
.container .content .flex-bars .content-box-flex .data-grow span{
    font-family: 'quicksand-bold';
    color: #ccc;
}
.container .content .chart-flex{
    display: flex;
    gap: 10px;
    align-items: center;
}
@media (max-width: 800px){
    .container .content .flex-bars{
        flex-direction: column;
    }
    .container .content .chart-flex{
        flex-direction: column;
    }
    .container .content .flex-bars .content-box-flex{
        width: 85%;
    }
}
.container .content .chart-flex .charts-wrapper{
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 6px;
    border: 1px solid #cccccc57;
    height: 400px;
    padding: 20px;
}
.container .content .chart-flex .charts-wrapper .bar-header{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 50px;
}
.container .content .chart-flex .charts-wrapper .bar-header .head-bar{
    display: flex;
    flex-direction: column;
}
.container .content .chart-flex .charts-wrapper .bar-header .head-bar h1{
    font-family: 'quicksand-bold';
}
.container .content .chart-flex .charts-wrapper .bar-header .head-bar p{
    color: #ccc;
}
.container .content .chart-flex .charts-wrapper .bar-header .buttons-sch{
    display: flex;
    gap: 5px;
    align-items: center;
}
.container .content .chart-flex .charts-wrapper .bar-header .buttons-sch .w-btn{
     padding: 5px;
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.container .content .chart-flex .charts-wrapper .class-levels-btn{
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.container .content .chart-flex .charts-wrapper .class-levels-btn .c-btns{
    flex: 1;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
     display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'quicksand-bold';
}
.c-btns:first-child{
    background-color: #0496FF;
    color: #fff;
}
.c-btns:nth-child(2){
    background-color: #EC7D10;
    color: #fff;
}
.c-btns:nth-child(3){
    background-color: #FFBC0A;
    color: #fff;
}
.c-btns:nth-child(4){
    background-color: #03a1db;
    color: #fff;
}
.container .content .level-data{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.container .content .level-data .level-details{
    display: flex;
    align-items: center;
    flex: 1;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid #0496FF;
    padding: 4px 20px;
}
.container .content .level-data .level-details .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #0496FF;
    border-radius: 50%;
}
.container .content .level-data .level-details .icon i{
    color: #fff;
    font-size: 12px;
}
.container .content .schedule-btn{
    display: flex;
    gap: 10px;
    margin: 5px 0 20px;
}
.container .content .schedule-btn .search{
    display: flex;
    gap: 10px;
}

.container .content .schedule-btn .search .input-search{
    display: flex;
    flex-direction: column;
}
.container .content .schedule-btn .search .input-search label{
    display: block;
    padding: 5px 0;
    font-weight: 600;
}
.container .content .schedule-btn .search .input-search select{
    width: 150px;
    border-radius: 4px;
    border: 1px solid #2274A5;
    outline: none;
    padding: 5px 10px;
}
@media (max-width: 500px){
    .container .content .schedule-btn .search{
        flex-direction: column;
    }
    .container .content .schedule-btn .search .input-search select{
        width: 200px;
        padding: 15px 10px;
        background-color: none;
        flex: 1;
    }
}
.container .content .schedule-btn button{
     background-color: #2274A5;
     color: #fff;
     padding: 8px 12px;
     border: none;
     border-radius: 4px;
     display: flex;
     justify-content: center;
}
::-webkit-scrollbar{
   display: none;
}
.container .content .title-up{
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}
.container .content .title-up .menu{
    font-size: 18px;
    display: none;
}
@media (max-width: 500px){
    .container .content .title-up .menu{
        display: flex;
    }
}
.container .content h1{
    font-size: 15px;
    display: flex;
    gap: 10px;
}
.container .content .form-data{
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}
.container .content .form-data .section_1{
    display: flex;
    flex: 1;
    gap: 10px;
    margin-bottom: 50px;
}
.container .content .form-data .section_1 .adm{
    display: flex;
    flex-direction: column;
}
.container .content .form-data .section_1 .adm label{
    display: block;
}
.container .content .form-data .section_1 .adm label img{
    width: 200px;
    height: 300px;
    object-fit: cover;
}
.container .content .form-data .section_1 .input{
    display: flex;
    flex-direction: column;
}
.container .content .form-data .section_1 .input label{
    display: block;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0;
    color: #2274A5;
}
.container .content .form-data .section_1 .input select{
    width: 200px;
    border: 1px solid #2274A5;
    outline: none;
    padding: 12px 5px;
    border-radius: 4px;
}
.container .content .form-data .section_1 .input input{
    width: 190px;
    border: 1px solid #2274A5;
    outline: none;
    padding: 12px 5px;
    border-radius: 4px;
}
.container .content .form-data .section_1 input[type="submit"]{
    background-color: #2274A5;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    outline: none;
    color: #fff;
}
.container .content table{
    margin: 30px 0;
    border-collapse: collapse;
}
.container .content table thead tr th{
    padding: 12px 10px;
    text-align: left;
    background-color: #131B23;
    color: #fff;
}
.container .content table tbody tr td{
    padding: 20px 10px;
    text-align: left;
    font-weight: 600;
   
}  
.container .content #scheduleList{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#scheduleList .session { 
    padding: 10px;
    border: 1px solid #ccc; 
    margin: 5px; 
    border-radius: 6px; 
    display: flex;
    flex: 1;
    flex-direction: column;
}

#scheduleList .session .date{
    display: inline-flex;
    padding: 12px 16px;
    background-color: #2274A5;
    border-radius: 4px;
    width: 180px;
    color: #fff;
    align-items: center;
 }
#scheduleList .session .date i{
    font-size: 12px;
}
#scheduleList .session .date h1{
    color: #fff;
}
#scheduleList .session .location{
    margin: 20px 0;
}
#scheduleList .session .location span{
    background-color: #E9F1F7;
    padding: 2px 10px;
    color: #000;
    border-radius: 4px;
    font-weight: 500;
}
#scheduleList .session .code{
    display: flex;
    gap: 10px;
}
#scheduleList .session .code .shadow{
    background-color: #E9F1F7;
    color: #000;
    padding: 2px 10px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
#scheduleList .session .code img{
    width: 20px;
    height: 20px;
}
#scheduleList .session .subject{
    display: flex;
    gap: 10px;
    margin: 20px 0;
}
#scheduleList .session .poster{
    width: 300px;
    height: 300px;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
}
#scheduleList .session .poster img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    float: left;
}
#scheduleList .session .subject span{
    background-color: #E9F1F7;
    color: #000;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 4px;
}
#scheduleList .session .time_set{
    display: flex;
    gap: 10px;
    width: 350px;
    padding: 0;
}
@media (max-width: 500px){
   #scheduleList .session .time_set{
    width: 100%;
   } 
   #scheduleList .session .poster{
    width: 100%;
    height: 300px;
   }
}
#scheduleList .session .time_set .start_set{
    flex: 1;
    font-weight: 600;
    padding: 2px 0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}
#scheduleList .session .time_set .start_set .clock img{
    width: 40px;
    height: 40px;
}
#scheduleList .session .time_set .start_set .st{
    background-color: #28a745;
    color: #fff;
}
#scheduleList .session .time_set .start_set .end{
     background-color: #fd7e14;
    color: #fff;
}
#scheduleList .session .time_set .start_set .session-time h1{
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 4px;
    flex: 1;

}
#scheduleList .session .time_set .start_set .session-time span{
    font-size: 12px;
}

#scheduleList .current { 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    animation: pulseShadow 2s infinite; /* apply animation */
    border: none; 
}
#scheduleList .next { 
     border: 2px solid orange; }
/* Keyframes for expanding + contracting shadow */
@keyframes pulseShadow {
  0% {
   box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
}
#current-schedule .next{
    border: 2px solid orange !important; 
      box-shadow: 0 0 5px rgba(192, 131, 11, 0.1);
    animation: pulseShadownext 2s infinite; /* apply animation */
}
#current-schedule .next h1{
    color: orange !important;
}
#current-schedule .next .venue{
    background-color: orange !important;
}
/* Keyframes for expanding + contracting shadow */
@keyframes pulseShadownext {
  0% {
   box-shadow: 0 0 5px rgba(192, 131, 11, 0.1);
  }
  50% {
     box-shadow: 0 0 8px rgba(192, 131, 11, 0.5);
  }
  100% {
     box-shadow: 0 0 5px rgba(192, 131, 11, 0.1);
  }
}
#current-schedule{
    margin: 20px 0;
}
#current-schedule .ongoing-event{
    border: 1px solid #d4f7d4;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(72, 185, 7, 0.1);
    animation: pulseShadowcurrent 2s infinite; 
    padding: 10px;
    display: flex;
    flex-direction: column;
}
@keyframes pulseShadowcurrent {
  0% {
   box-shadow: 0 0 5px rgba(72, 185, 7, 0.1);
  }
  50% {
    box-shadow: 0 0 8px rgba(72, 185, 7, 0.1);
  }
  100% {
    box-shadow: 0 0 5px rgba(72, 185, 7, 0.1);
  }
}
#current-schedule .ongoing-event .venue{
    background-color: #28a745;
    width: 300px;
    padding: 8px 16px;
    border-radius: 4px;
    margin: 10px 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#current-schedule .zero-session{
    background-color: #fd7e14;
    padding: 12px 0;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}
@media (max-width: 500px){
    #current-schedule .zero-session{
        width: 100%;
        padding: 10px 0; 
    }
    #current-schedule .ongoing-event .venue{
        width: 100%;
        padding: 10px 0;
    }
}
#current-schedule .ongoing-event .venue span{
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}
#current-schedule .ongoing-event .subject{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px; 
}
#current-schedule .ongoing-event .subject span{
    background-color: #E9F1F7;
     color: #000;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 4px;
}
#current-schedule .ongoing-event .time{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px; 
}
#current-schedule .ongoing-event .time span{
     background-color: #E9F1F7;
     color: #000;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 4px;
}
#current-schedule .ongoing-event h1{
    font-size: 16px;
    color: #28a745;
}
/* new register */

.reg-clean .register{
    display: flex;
    width: 100%;
    
}
.reg-clean .register .sides{
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
     position: relative;
}
.reg-clean .register .sides:nth-child(1){
     background: 
      linear-gradient(rgba(52,152,219,0.95), rgba(52,152,219,0.99)), 
      url("../image/8331.jpg") center/cover no-repeat;
      justify-content: center;
      align-items: center;
}
.reg-clean .register .sides:nth-child(1) img{
    object-fit: contain;
   width: 70%;
}
.reg-clean .register  .circle{
    position:absolute;
    right:-40px;
    top:50%;
    transform:translateY(-50%);
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(52,152,219,0.99);
    z-index: -1;
  }
.reg-clean .register .sides:nth-child(2){
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.reg-clean .register form {
    width: 70%;
}
      @media (max-width: 520px){
        .reg-clean .register form {
            width: 95%;
        }
        .reg-clean .register .sides:nth-child(1){
            display: none;
        }
      }
.reg-clean .register .form-group-register {
    position: relative;
    margin-bottom: 15px;
    display: flex;
    flex: 1;
}
.reg-clean .register h1{
    font-size: 30px;
    margin-bottom: 10px;
}
.reg-clean .register p{
    color: #5a5a5a;
    font-size: 12px;
    margin: 20px 0;
}
.reg-clean .form-group-register input {
    width: 100%;
    padding: 8px 12px 18px 40px; 
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    color: #333;
    transition: border 0.3s;
}
.reg-clean .form-group-register #phone{
    width: 100%;
    padding: 12px;
}

.reg-clean .form-group-register input:focus {
    border-color: #0d47a1;
}

.reg-clean .form-group-register label {
    position: absolute;
    top: 12px;
    left: 40px;
    background: white;
    padding: 0 5px;
    color: gray;
    font-size: 16px;
    pointer-events: none;
    transition: 0.3s;
}

.reg-clean .form-group-register input:focus + label,
.reg-clean .form-group-register input:not(:placeholder-shown) + label {
    top: -10px;
    left: 35px;
    font-size: 12px;
    color: #0d47a1;
}

.reg-clean .form-group-register i.left-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: gray;
    font-size: 16px;
}
.reg-clean .register .check-term{
    display: flex;
    align-items: center;
    gap: 5px;
}
.reg-clean .password-wrapper-register i.right-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: gray;
}

.reg-clean .register button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #0d47a1;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}
.iti {
    width: 100%;
}
.message-let{
    width: 300px;
    padding: 20px;
    padding: 15px 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s ease-in-out;
    position: absolute;
    bottom: 80px;
    background-color: #fff;
    border-radius: 6px;
    font-weight: bold;
    z-index: 2;
}
.message-let.error{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}














/* register and login */
#installBtn{
    position: fixed;
    width: 300px;
    height: 100px;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
     color: #000;
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 9px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
#installBtn span{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 9px;
    background: linear-gradient(to left, rgba(52,152,219,0.99), rgba(52,152,219,0.95));
    padding: 0 20px;
     top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#installBtn span img{
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.register-container{
    width: 100%;
    height: 100vh;
    background: 
      linear-gradient(rgba(52,152,219,0.99), rgba(52,152,219,0.95)), 
      url("../image/8331.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.register-container .notification{
    position: absolute;
    width: 300px;
    background-color: #fff;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    top: -200px;
    transition: .3s ease;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}
.register-container .notification button{
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    margin: 10px 0;
}
.register-container .registration-holder{
    width: 500px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
     background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); 
      border: 1px solid rgba(255, 255, 255, 0.2); 
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); 
}
input,select {
  background-color: transparent; 
  outline: none; 
  -webkit-box-shadow: none; 
  box-shadow: none;
}

/* Remove Chrome autofill yellow background */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  -webkit-text-fill-color: #000; 
}

.register-container .registration-holder h1{
    font-size: 28px;
    padding: 10px 0;
    font-family: 'quicksand-bold ' !important; 
    color: #fff;
}
.register-container .registration-holder .hr{
    background-color: #2274A5;
    height: 1px;
    width: 100%;
}
.register-container .registration-holder .form-data{
    padding: 20px 0;
}
@media (max-width: 500px){
  .register-container .registration-holder h1{
    font-size: 20px;
  }
    .register-container .registration-holder{
        width: calc(90% - 40px);
    }
}

.register-container  .form-group {
    position: relative;
    margin: 15px 0;
    flex: 1;
  }
  .register-container p button{
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid #2274A5;
  }
  .register-container  .form-group i{
    position: absolute;
    right: 10px;
    top: 12px;
    color: #fff;
     
  }
.register-container  .form-group .submit{
    flex: 1;
    background-color: #2274A5 !important;
    width: 100%;
    color: #fff;
    font-weight: 500;
}
.register-container  input {
    width: calc(100% - 20px);
    padding: 12px 10px;
    font-size: 16px;
    border: 1px solid #2274A5;
    border-radius: 4px;
    outline: none;
    background-color: transparent;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
    color: #fff;
  }
input:-internal-autofill-selected {
    background-color: transparent !important;
}
.register-container  label {
    position: absolute;
    left: 10px;
    top: 12px;
    color: #fff;
    font-size: 16px;
    pointer-events: none;
    transition: 0.2s ease all;
    background: transparent;
    padding: 0 4px;
  }

.register-container  input:focus + label,
.register-container  input:not(:placeholder-shown) + label {
    top: -15px;
    font-size: 12px;
     color: #fff;
  }
  .register-container .input{
    display: flex;
    gap: 10px;
  }
  .register-container select {
  width: 100%;
  padding: 12px 10px;
  font-size: 16px;
  border: 1px solid #2274A5;
  outline: none;
  color: #fff;
  border-radius: 4px;
  background: transparent;
  appearance: none; /* removes default arrow in some browsers */
}
.register-container select:focus + label,
.register-container .select:not([value=""]) + label {
  top: -15px;
  font-size: 12px;
 color: #fff;
}


  .form-data .verify-box {
      display: flex;
      gap: 10px;
      width: 100%;
      justify-content: center;
      align-items: center;
      margin: 20px 0;
    }
    .form-data .send-error{
        padding: 20px 0;
    }
    .form-data .send-error .resend{
        background: #2274A5;
        padding: 10px;
        border-radius: 6px;
        color: #fff;
        width: 60px;
        margin: 10px 0 0 0;
        font-family: 'quicksand-bold', sans-serif;
    }

   .form-data .verify-box input {
      width: 40px;
      height: 40px;
      text-align: center;
      font-size: 22px;
      border: 2px solid #ecebebff;
      border-radius: 8px;
      outline: none;
      transition: border-color 0.2s;
    }
    @media (max-width: 500px){
        .form-data .verify-box input {
            width: 30px;
            height: 30px;
        }
    }

   .form-data .verify-box input:focus {
      border-color: #2274A5;
    }
   /* addmin dashboard */
.user-datas{
    display: flex;
    justify-content: space-between;
    width: 95%;
    padding: 20px;
    height: 500px;
    overflow: hidden;
}
.user-datas .sides{
    width: 50%;
    height: 100%;
    overflow: scroll;
    display: flex;
}
.user-datas .sides .user-cards{
    display: flex;
    flex-direction: column;
    flex: 1;
}
@media (max-width: 520px){
    .user-datas{
        flex-direction: column;
        height: auto;
        width: 100%;
        padding: 20px 0;
    }
    .user-datas .sides{
        width: 100%;
        flex-direction: column;
    }
 
}
.user-datas .sides .user-cards .title{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.user-datas .sides .user-cards-right .title{
    background-color: #0496FF;
      display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.user-datas .sides .user-cards-right{
    background-color: #0496ff41;
      display: flex;
    flex-direction: column;
    flex: 1;
}
.user-datas .sides .trends-user{
    display: flex;
    gap: 10px;
    flex-direction: column;
    height: 100%;
    overflow: auto;
}
.user-datas .sides .trends-user .box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    padding: 20px 10px;
    background-color: #ffffff30;
    border-radius: 4px;
    color: #0496FF;
    font-weight: 600;
}
.user-datas .sides .user-cards:nth-child(1){
     background-color: #ffbe0a2c;
}
.user-datas .sides .user-cards:nth-child(1) .title{
    background-color: #FFBC0A;
}
.user-datas .sides .user-cards:nth-child(2){
    background-color: #ec7e102e;
}
.user-datas .sides .user-cards:nth-child(2) .title{
    background-color: #EC7D10;
}
.user-datas .sides .user-cards:nth-child(3){
    background-color: #fc2e0036;
}
.user-datas .sides .user-cards:nth-child(3) .title{
    background-color: #FC2F00;
}

  /* payment page */


  .payment-container {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
@media (max-width: 520px){
     .payment-container {
        width: 100%;
        padding: 20px 0;
     }
}

 .payment-container  .card-display {
    height: 150px;
    background: linear-gradient(to left , #2275a5c8 ,#2274A5);
    border-radius: 12px;
    margin-bottom: 20px;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-display h3 {
    margin: 0;
    font-size: 18px;
}

.card-display p {
    font-size: 14px;
}

.payment-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.payment-inputs input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 94%;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.button-group button {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    transition: all 0.2s;
}

.button-week {
    background-color: #2274A5;
}

.button-week:hover {
    background-color: #2275a5a0;
}

.button-month {
     background-color: #2274A5;
}

.button-month:hover {
    background-color: #2274A5;
}

#addInputBtn, #payBtn {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

#payBtn {
     background-color: #2274A5;
    color: #fff;
}

#payBtn:hover {
     background-color: #2275a593;
}