@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;900&display=swap');

:root {

  --body-font: "Poppins", sans-serif;
  
  --body-bg-color: var(--AliceBlue);
  --title-bg-color: rgba(40 109 168);
  --title-bg-color-hover: rgba(40 109 168 / 60%);
  --bottom-bg-color: rgb(255 255 255);
  --content-bg-color: rgba(255 255 255);
  --conttext-bg-color: #999ba5;
  --body-color: #1b1b1b;
  --count-bg-color: rgb(7 119 156);
  --status-bg-color: rgb(180 200 234);
  --search-bg-color: rbg (180 200 234);
  
  /* COLORS */
  --LightCyan: #CAF0F8;
  --PaleTurquoise:	#AFEEEE;
  --AliceBlue:	#F0F8FF;
  --White:	#FFFFFF;
  --SteelBlue:	#4682B4;
  --UranianBlue: #BDE0FE;
  --new-xabar-color: #D84E4E;
  --Pink: #FFCAD4;

}

.dark-mode {

  --body-bg-color: rgba(245 245 245);
  --title-bg-color: rgba(40 109 168);
  --title-bg-color-hover: rgba(40 109 168 / 60%);
  --bottom-bg-color: rgb(255 255 255);
  --content-bg-color: rgba(255 255 255);
  --conttext-bg-color: #999ba5;
  --body-color: #1b1b1b;
  --count-bg-color: rgb(7 119 156);
  --status-bg-color: rgb(180 200 234);
  --search-bg-color: rbg (180 200 234);
  
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}
body{
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #28589c);
	background-size: 400% 400%;
	animation: gradient 35s ease infinite;
	min-height: 100vh;
    font-family: var(--body-font); 
    font-size: 16px;
    color: var(--body-color);
    line-height: 20px;
    font-weight: 500;
    margin: 0 auto;
    position: relative;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
   
}

.info_error_or_success {

  position: fixed;
  top: 0;
  width: 90%;
  margin: 2px;
  color: white;
  z-index: 100;
  -webkit-transition: width .4s ease-in-out;
  -moz-transition: width .4s ease-in-out;
  -ms-transition: width .4s ease-in-out;
  -o-transition: width .4s ease-in-out;
  transition: width .4s ease-in-out;
  animation: stop 12s normal forwards ease-in-out;

}

.error_red {
  
  background-color: #FF6F78;

}

.success_green {
  
  background-color: #4DD374;

}

.striples_info {

  padding: 8px 40px 8px 15px;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  -webkit-background-size: 30px 30px;
  -moz-background-size: 30px 30px;
  background-size: 30px 30px;
  background-image: -webkit-gradient(linear, left top, right bottom,
  color-stop(.25, rgba(255, 255, 255, 0.15)), color-stop(.25, transparent),
  color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, 0.15)),    
  color-stop(.75, rgba(255, 255, 255, 0.15)), color-stop(.75, transparent),
  to(transparent));
  background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%,
  transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%,
  transparent 75%, transparent);
  background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%,
  transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%,
  transparent 75%, transparent);
  background-image: -ms-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%,
  transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%,
  transparent 75%, transparent);
  background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%,
  transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%,
  transparent 75%, transparent);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%,
  transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%,
  transparent 75%, transparent);  
  animation: striples_info 3s linear infinite;
  
}

.info_close {
  
  position: absolute;
  right: 10px;
  z-index: 101;
  top: 50%;
  transform: translateY(-50%);
  
}

@keyframes striples_info {
  
  0% {
    
    background-position: 0 0;
  
  } 
  
  100% {
    
    background-position: 60px 0;
  
  }
  
}

@keyframes stop {
  
  0% {
    
    opacity: 1;
  
  }
  
  60% {
    
    opacity: 1;
  
  }
  
  100% {
    
    opacity: 0;
    z-index: -1;
  
  }

}


.container{
    padding-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 75vh;
}
.canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3000;
}

.box{
    display: flex;
    flex-direction: row;
    position: relative;
    padding: 15px;
    min-height: 510px;
    width: 380px;
    background-color: rgba(255, 220, 220, 0.4);
    border-radius: 30px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 3px solid transparent;
    overflow: hidden;
}
#title {

background-color: var(--title-bg-color);
position: fixed; 
width: 100%; 
height: 50px;
left: 0; top: 0;
z-index: 120; 
direction: ltr; 
box-shadow: 0px 2px 8px 0px rgb(84, 60, 0); 
} 
#lgo {
    outline: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    display: block;
    padding: .4em .0em;
    text-decoration: none;
}
.top-hat {
  position: relative;
  top: -14px;
  left: 20px;
  height: 20px;
  filter: drop-shadow(0 2px 1px rgb(0 0 0 / .25));
}

.footer_menu {
    font-size: 11px;
    text-align: center;
    margin: 5px 0;
    line-height: 1.6em;
}

.f_ma {
    display: inline;
    white-space: nowrap;
    padding: 4px 6px;
    color: white;
    font-weight: 550;
}

.c1, a h4{
    text-decoration: none;
    color: white;
}
.box-login{
    position: absolute;
    width: 85%;
    left: 27px;
    transition: .5s ease-in-out; 
}
.box-register{
    position: absolute;
    width: 85%;
    right: -350px;
    transition: .5s ease-in-out; 
}
.top-header{
    text-align: center;
    margin: 30px 0;
}
.top-header h3{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px
}
.input-group{
    width: 100%;
}
.input-field{
    margin: 18px 0;
    position: relative;
}
.input-box{
    width: 100%;
    height: 50px;
    font-size: 15px;
    color: #040404;
    border: none;
    font-weight: 600;
    border-radius: 10px;
    padding: 0 15px 0 15px;
    background: rgba(224, 223, 223, 0.6);
    backdrop-filter: blur(2px);
    outline: none;
}
.input-field label{
    position: absolute;
    left: 20px;
    top: 15px;
    font-size: 15px;
    transition: .3s ease-in-out;
}
.input-box:focus ~ label,.input-box:valid ~ label{
    top: -2px;
    font-size: 12px;
    color: var(--title-bg-color);
    font-weight: 500;
}

.eye-area{
    position: absolute;
    top: 15px;
    right: 10px;
}
.eye-box{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
i{
    position: absolute;
    color: #444444;
    cursor: pointer;
}
#eye,#eye-2{
    opacity: 1;
}
#eye-slash,#eye-slash-2{
    opacity: 0;
}

.center{
    text-align: center;
}
.remember{
    //display: flex;
    font-size: 13px;
    margin: 12px 0 30px 0;
    color: #000;
}
.check{
    margin-right: 8px;
    width: 20px;
}
.input-submit{
    width: 100%;
    height: 50px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    background: var(--title-bg-color);
    color: #fff;
    box-shadow: 0px 4px 20px rgba(62, 9, 9, 0.32);
    cursor: pointer;
    transition: .4s;
}
.input-submit:hover{
    background: var(--title-bg-color);
    box-shadow: 0px 4px 20px rgba(62, 9, 9, 0.32);
}
.forgot{
    text-align: center;
    font-size: 15px;
    font: 500;
    margin-top: 20px;
    margin-bottom: 25px;
}
.forgot a{
    text-decoration: none;
    color: #000;
}
.switch{
    display: flex;
    position: absolute;
    bottom: 50px;
    left: 30px;
    width: 85%;
    height: 50px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.switch a{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    width: 50%;
    border-radius: 10px;
    z-index: 10;
}
#btn{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 168px;
    height: 50px;
    background: #cccccd;
    border-radius: 10px;
    box-shadow: 2px 0px 12px rgba(0, 0, 0, 0.1);
    transition: .5s ease-in-out;
}