/* Your Custom CSS Goes here */

/* page loader */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); Dark overlay */
  /* background: white; */
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure loader is on top of everything */
}

.loader1 {
  border: 6px solid #f3f3f3; /* Light gray */
  border-top: 6px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite; /* Rotate animation */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.content {
  display: none; /* Hide content initially */
}


vertical-center {
    margin-top: 3%;
}

.space {
    margin: 15%;
}

.enclosing {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
}

.form-nav {
    margin: 0rem 2rem;
}

.form-navv {
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
}
.form-home a {
    border: 1px solid black;
    text-decoration: none;
    padding: .4rem .8rem;
}

.passCon {
    position: relative;
}
#togglePassword {
    position: absolute;
    top: 70%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}
.container-fluid {
    position: relative;
}

.catee {
    position: absolute;
    right: .9rem;
    top: 1.6rem;
    width: 15%;
    margin-left: 1rem;
    /* float: right; */
}
.cat {
    width: 50%;
    margin: auto;
    /* margin-left: 2rem; */
    /* align-items: center; */
}

.acct-log1, .acct-log2 {
    background: transparent;
    font-size: 1.8rem;
    color: rgb(85, 84, 84);
    cursor: pointer;
}
.acct-log2 {
    display: none;
}
.out-log {
    perspective: 250px;
    display: none; 
    padding: 0rem;
    z-index: 200px;
}

.out-log li {
    list-style-type: none;
    /* width: 100%; */
    background: rgb(43, 42, 42);
    border-bottom: 1px solid rgb(150, 149, 149);
    transform: rotateX(90deg);
    opacity: 0;
    animation: navKey 1s ease-in-out forwards;
    transform-origin: top;
}
.out-log li a {
    color: rgb(182, 180, 180);
    padding: .3rem .5rem;
    /* width: 50%; */
    overflow: hidden;
    border-top: 1px solid rgb(119, 119, 119);
    text-align: center;
    display: block;
    
    font-size: 12px;
    text-decoration: none;
    box-shadow: -2rem 5rem 5rem rgba(0, 0, 0, 0.3);
}
.out-log li a:hover {
    color: rgb(250, 249, 249);
}
.out-log li:nth-child(2) {
    animation-delay: 100ms;
}
.out-log li:nth-child(3) {
    animation-delay: 250ms;
}

@keyframes navKey {
    to {
      transform: rotateX(0deg);
      opacity: 1;
    }
}
@media screen and (max-width: 1089px) {
    .catee {
        width: 20%;
        margin: auto;
    }  
}
@media screen and (max-width: 915px) {
    .catee {
        width: 30%;
        margin: auto;
    }  
    .catee {
        right: 0rem;
    }
    
    .cat {
        width: 50%;
        margin: auto;
    } 
}
@media screen and (max-width: 735px) {
    .cat {
        width: 80%;
        margin: auto;
    } 
}
@media screen and (max-width: 600px) {
    .cat {
        width: 90%;
        margin: auto;
        /* padding-left: 2rem; */
    } 
}

@media screen and (max-width: 570px) {
    .cat {
        width: 55%;
        margin: auto;
        /* padding-left: 2rem; */
    } 
    
    .sub-menu>ul>li {
        width: 50%;
        margin: .3rem auto;
    }

}
@media screen and (max-width: 450px) {
    .cat {
        width: 100%;
        margin: auto;
        margin-left: -1rem;

    } 
    
}
@media screen and (max-width: 270px) {
    .cat {
        width: 100%;
        margin: auto;
        margin-left: -1rem;

    } 
    
} 


.container-fluid {
    padding: 0%;
}
.sidebar-title {
    position: relative;
    margin-bottom: 1rem;
}
.kyc {
    position: absolute;
    top: 75px;
    right: 0;
    
}
.sidebar-title img {
    margin-right: .8rem;
    border: 1px solid black;
    width: 10%;
}
.sidebar-title span {
    font-size: 1.2rem;
    color: white;
}
.sub-menu>ul>li {
    width: 50%;
    margin: auto;
}
.active {
    background: rgba(73, 18, 145, 0.4);
    color: white;
}