*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{

background:#0F172A;

}

.register-page{

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

padding:30px;

}

.register-box{

width:100%;

max-width:470px;

background:#1E293B;

padding:40px;

border-radius:25px;

box-shadow:0 20px 60px rgba(0,0,0,.35);

}

.register-box h2{

color:#fff;

font-weight:700;

text-align:center;

margin-bottom:10px;

}

.register-box p{

text-align:center;

color:#CBD5E1;

margin-bottom:30px;

}

.form-control{

height:55px;

background:#334155;

border:none;

color:#fff;

}

.form-control::placeholder{

color:#CBD5E1;

}

.form-control:focus{

background:#334155;

color:#fff;

box-shadow:0 0 15px #8B5CF6;

}

.register-btn{

height:55px;

background:linear-gradient(135deg,#8B5CF6,#EC4899);

border:none;

color:#fff;

font-weight:700;

font-size:18px;

border-radius:12px;

transition:.3s;

}

.register-btn:hover{

transform:translateY(-3px);

}

.login-text{

text-align:center;

margin-top:20px;

color:#CBD5E1;

}

.login-text a{

color:#A855F7;

text-decoration:none;

font-weight:700;

}