*{
    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;
    background:linear-gradient(135deg,#0f172a,#111827,#1e293b);
    padding:20px;
}

.container{
    width:100%;
    max-width:450px;
}

.register-box{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
    padding:30px 25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.logo{
    text-align:center;
    margin-bottom:25px;
}

.logo h1{
    color:#fff;
    font-size:32px;
    font-weight:700;
}

.logo p{
    color:#cbd5e1;
    margin-top:5px;
}

form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

form input{
    width:100%;
    height:55px;
    border:none;
    outline:none;
    border-radius:12px;
    padding:0 15px;
    background:rgba(255,255,255,0.08);
    color:#fff;
    font-size:15px;
}

form input::placeholder{
    color:#cbd5e1;
}

button{
    height:55px;
    border:none;
    border-radius:12px;
    background:#3b82f6;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    transform:translateY(-2px);
}

.login-link{
    text-align:center;
    margin-top:20px;
    color:#cbd5e1;
}

.login-link a{
    color:#3b82f6;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:480px){

    .register-box{
        padding:25px 20px;
    }

    .logo h1{
        font-size:28px;
    }

}