@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    background:linear-gradient(-45deg,#0f172a,#1d4ed8,#7c3aed,#06b6d4);
    background-size:400% 400%;
    animation:bgMove 12s ease infinite;
    overflow-x:hidden;
}

@keyframes bgMove{

0%{
background-position:0% 50%;
}

50%{
background-position:100% 50%;
}

100%{
background-position:0% 50%;
}

}

.register-card{

width:100%;
max-width:470px;

padding:40px;

border-radius:25px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(20px);

-webkit-backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.2);

box-shadow:0 20px 60px rgba(0,0,0,.35);

animation:fadeUp .8s ease;

}

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(40px);

}

to{

opacity:1;
transform:translateY(0);

}

}

.register-card h2{

color:#fff;

font-size:32px;

font-weight:700;

text-align:center;

margin-bottom:10px;

}

.register-card p{

text-align:center;

color:#dbeafe;

margin-bottom:30px;

}

.input-box{

display:flex;

align-items:center;

background:#fff;

border-radius:14px;

margin-bottom:18px;

overflow:hidden;

transition:.3s;

}

.input-box:focus-within{

box-shadow:0 0 0 4px rgba(59,130,246,.25);

transform:translateY(-2px);

}

.input-box i{

width:55px;

text-align:center;

font-size:20px;

color:#2563eb;

}

.input-box input,
.input-box select{

flex:1;

height:56px;

border:none;

outline:none;

padding:0 15px;

font-size:15px;

background:transparent;

}

.terms{

display:flex;

align-items:center;

gap:10px;

color:#fff;

font-size:14px;

margin:20px 0;

}

.terms input{

width:18px;
height:18px;

}

button{

width:100%;

height:58px;

border:none;

border-radius:14px;

background:linear-gradient(90deg,#2563eb,#7c3aed);

color:#fff;

font-size:17px;

font-weight:700;

cursor:pointer;

transition:.35s;

}

button:hover{

transform:translateY(-4px);

box-shadow:0 15px 35px rgba(37,99,235,.45);

}

.login-link{

margin-top:25px;

text-align:center;

color:#fff;

}

.login-link a{

color:#93c5fd;

text-decoration:none;

font-weight:600;

}

.login-link a:hover{

text-decoration:underline;

}

@media(max-width:576px){

.register-card{

padding:25px;

}

.register-card h2{

font-size:26px;

}

.input-box input,
.input-box select{

font-size:14px;

}

button{

height:54px;

}

}