*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:20px;

background:linear-gradient(135deg,#4f46e5,#06b6d4,#22c55e);

background-size:300% 300%;
animation:bgMove 10s ease infinite;
}

@keyframes bgMove{

0%{background-position:0% 50%;}

50%{background-position:100% 50%;}

100%{background-position:0% 50%;}

}

.auth-container{

width:100%;
max-width:430px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.2);

border-radius:25px;

padding:35px 28px;

box-shadow:0 20px 40px rgba(0,0,0,.25);

color:#fff;

}

.auth-logo{

font-size:42px;

font-weight:bold;

text-align:center;

margin-bottom:20px;

letter-spacing:2px;

}

.auth-logo span{

color:#00ffb3;

}

h1{

text-align:center;

font-size:30px;

margin-bottom:10px;

}

.auth-subtitle{

text-align:center;

font-size:15px;

opacity:.9;

margin-bottom:30px;

line-height:1.5;

}

.auth-card{

display:flex;

flex-direction:column;

gap:18px;

}

.auth-card input{

width:100%;

padding:15px 18px;

border:none;

outline:none;

border-radius:14px;

background:rgba(255,255,255,.18);

color:#fff;

font-size:15px;

}

.auth-card input::placeholder{

color:#f3f3f3;

}

.auth-card input:focus{

background:rgba(255,255,255,.28);

}

.auth-btn{

padding:15px;

border:none;

border-radius:14px;

background:#00ffb3;

color:#111;

font-size:17px;

font-weight:bold;

cursor:pointer;

transition:.3s;

}

.auth-btn:hover{

transform:translateY(-2px);

background:#00d695;

}

.divider{

display:flex;

align-items:center;

justify-content:center;

margin:10px 0;

color:#fff;

opacity:.8;

}

.divider span{

padding:0 15px;

}

.register-text{

text-align:center;

font-size:15px;

}

.register-text a{

color:#00ffb3;

font-weight:bold;

text-decoration:none;

}

.register-text a:hover{

text-decoration:underline;

}

@media(max-width:500px){

.auth-container{

padding:25px 20px;

}

.auth-logo{

font-size:34px;

}

h1{

font-size:25px;

}

}

.register-links{
    margin-top:20px;
    text-align:center;
    font-size:14px;
    color:#666;
}

.register-links p{
    margin:8px 0;
}

.register-links a{
    color:#6d3cff;
    text-decoration:none;
    font-weight:bold;
}

.register-links a:hover{
    text-decoration:underline;
}