/* PAGE REGISTER */

.register-page{

min-height:80vh;

display:flex;
align-items:center;
justify-content:center;

padding:80px 20px;

}

/* CARD */

.register-container{

background:#1e293b;

padding:50px;

border-radius:12px;

width:100%;
max-width:450px;

text-align:center;

box-shadow:0 10px 40px rgba(0,0,0,0.5);

}

.register-container h1{

margin-bottom:10px;
font-size:32px;

}

.register-subtitle{

color:#aaa;
margin-bottom:35px;

}

/* FORM */

.register-form{

display:flex;
flex-direction:column;
gap:18px;

}

.input-group{

display:flex;
flex-direction:column;
text-align:left;

}

.input-group label{

font-size:13px;
margin-bottom:6px;
color:#bbb;

}

.input-group input{

padding:12px;

border-radius:6px;

border:1px solid #333;

background:#020617;

color:white;

}

/* OPTIONS */

.register-options{

font-size:13px;
color:#aaa;

}

/* BUTTON */

.register-button{

margin-top:10px;

padding:12px;

background:#6366f1;

border:none;

border-radius:6px;

font-weight:bold;

color:white;

cursor:pointer;

}

.register-button:hover{

background:#7c7fff;

}

/* LOGIN LINK */

.register-login{

margin-top:25px;
font-size:14px;

}

.register-login a{

color:#d4af37;
text-decoration:none;

font-weight:bold;

}