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

body{
background:linear-gradient(180deg,#5b21b6,#7c3aed,#9333ea);
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:20px;
}

.register-box{
width:100%;
max-width:430px;
background:#fff;
border-radius:20px;
padding:25px;
box-shadow:0 15px 40px rgba(0,0,0,.25);
}

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

.logo h1{
font-size:30px;
font-weight:bold;
color:#6d28d9;
}

.logo p{
margin-top:5px;
font-size:14px;
color:#777;
}

form input,
form select{
width:100%;
height:50px;
margin-top:12px;
padding:0 15px;
border:1px solid #ddd;
border-radius:12px;
outline:none;
font-size:15px;
}

button{
width:100%;
height:50px;
margin-top:18px;
border:none;
border-radius:12px;
background:#6d28d9;
color:#fff;
font-size:17px;
font-weight:bold;
cursor:pointer;
transition:.3s;
}

button:hover{
background:#5b21b6;
}

.login-link{
margin-top:18px;
text-align:center;
}

.login-link a{
text-decoration:none;
color:#6d28d9;
font-weight:bold;
}

.support{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
background:#0088cc;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
color:#fff;
font-size:30px;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,.3);
}