@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@700&display=swap');
* {
  
}
.abs {
   /*Height:95vh;*/
  box-sizing: border-box;
  overflow: hidden;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color:#555;
  
  
 /* Must manually set width/height */
 overflow: hidden; /*hide scroll*/
 padding:-50px;
 width:100vw;
 height:100vh;
 /*
 background: #ecf0f3;
 background-color:rgba(var(--bg-stronger-rgb),0); 
 /*background-color:var(--bg-strongest);*/
 /*background-color:rgba(236, 240, 243, 0.598);*/
	z-index:10;

 /* The magic centering code */
 margin:auto;
 position:absolute;
 top:0;bottom:0; /* Aligns Vertically - Remove for Horizontal Only */
 left:0;right:0; /* Aligns Horizontally - Remove for Vertical Only  */

 /* Prevent div from overflowing main window */
 max-width:100%;
 
 max-height:100%;
  /*background-color:rgba(var(--bg-stronger-rgb),0); */
  
	
	
	top: -100%;
	opacity:0;
	transform: translateX(0%);
	animation: smooth-appear 0.75s ease forwards;
	
	
  
        
        


}


@keyframes smooth-appear {
0%{
	overflow:hidden;
}
  to {
    left: -2px;
    top:  -2px;
    opacity:1;
	overflow:hidden;
width:100vw;
  }
100%{
	overflow:hidden;

}
}

.login-div {  
	width:350px;
  height: 515px;
  padding: 35px 35px 35px 35px;
  padding: 55px;
  border-radius: 30px;
  background: #ecf0f3;
  background: var(--bg-stronger);
  box-shadow: 2px 2px 3px var(--shadow-color);
}
.LoginRow{
	display: flex;
	flex-direction: column;
}
.Loginlogo {
  background:url("imageedit_7_2951798417.png");
  background-repeat:no-repeat; 
  background-position: center;
  width:auto;
  height: 100px;
  margin:0 auto;

}
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,600&display=swap');
.title {
  text-align: center;
  font-size: 28px;
  padding-top: 15px;
  letter-spacing: 0.5px;
   line-height: 0.85;
  font-family: 'Rajdhani', sans-serif;
  color:var(--font-color);
  text-shadow:var(--text-shadow);  
}
.sub-title {
  text-align: center;
  font-size: 15px;
  padding-top: 7px;
  letter-spacing: 3px;  
}
