*{

margin:0;
padding:0;
box-sizing:border-box;

}
@font-face {
    font-family: 'BYekan';
    src: url('/assets/fonts/BYEKAN.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}


body,
* {
    font-family: 'BYekan', sans-serif;
}

body{

font-family:tahoma;

background:
radial-gradient(circle at top,#4c1d95,#020617);

min-height:100vh;

}



.auth-page{


min-height:100vh;

display:grid;

grid-template-columns:1fr 430px;

gap:60px;

align-items:center;

padding:40px;

animation:page .6s ease;


}



@keyframes page{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

}

}





.auth-brand{

color:white;

max-width:600px;

}



.auth-logo{

width:100px;

margin-bottom:25px;

animation:float 3s infinite;


}



@keyframes float{

50%{

transform:translateY(-10px);

}

}





.auth-brand h1{

font-size:42px;

margin-bottom:15px;

}



.auth-brand p{

color:#cbd5e1;

font-size:18px;

}



.features{

margin-top:40px;

display:grid;

gap:15px;

}



.features div{

background:rgba(255,255,255,.08);

padding:16px;

border-radius:15px;

backdrop-filter:blur(20px);

}





.login-card{


background:rgba(255,255,255,.08);

border:

1px solid rgba(255,255,255,.15);


backdrop-filter:blur(25px);

padding:40px;

border-radius:25px;

color:white;

box-shadow:

0 20px 60px #0008;


}





.login-card h2{

font-size:28px;

}



.form-subtitle{

color:#cbd5e1;

margin:10px 0 30px;

}




.form-group{

margin-bottom:20px;

}




label{

display:block;

margin-bottom:8px;

}



input{

width:100%;

padding:15px;

border-radius:12px;

border:0;

outline:none;

font-size:15px;

}




input:focus{

box-shadow:0 0 0 3px #8b5cf6;

}



.login-button{


width:100%;

padding:16px;

border:0;

border-radius:14px;

background:#7c3aed;

color:white;

font-weight:bold;

cursor:pointer;

font-size:16px;

transition:.3s;


}



.login-button:hover{

background:#6d28d9;

}





.message{

margin-top:15px;

color:#fca5a5;

text-align:center;

}





.auth-link{

margin-top:25px;

text-align:center;

}



.auth-link a{

color:#c4b5fd;

}





@media(max-width:900px){


.auth-page{

grid-template-columns:1fr;

padding:20px;

}



.auth-brand{

text-align:center;

}



.auth-brand h1{

font-size:30px;

}



.login-card{

width:100%;

}


}
body:before{

content:"";

position:fixed;

inset:0;

background:#020617;

z-index:99999;

animation:hideLoader .8s forwards;

}



@keyframes hideLoader{

0%{

opacity:1;

}

100%{

opacity:0;

visibility:hidden;

}

}