*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#050816;
color:white;
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:30px;
overflow-x:hidden;
}

.background{
position:fixed;
inset:0;

background:
linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
url("https://images.unsplash.com/photo-1550547660-d9450f859349?q=80&w=1400");

background-size:cover;
background-position:center;

z-index:-1;
}

.register-container{
width:100%;
max-width:950px;

display:grid;
grid-template-columns:1fr 1fr;

background:rgba(255,255,255,.05);

backdrop-filter:blur(10px);

border:1px solid rgba(255,255,255,.08);

border-radius:25px;

overflow:hidden;

box-shadow:
0 0 30px rgba(0,255,204,.15);
}

.logo-area{
padding:50px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
}

.logo-area h1{
font-family:'Orbitron',sans-serif;
font-size:3rem;
color:#00ffcc;
}

.logo-area span{
color:#ffcc00;
}

.logo-area p{
margin-top:15px;
color:#d7d7d7;
}

.register-form{
padding:40px;

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

.register-form h2{
text-align:center;
color:#00ffcc;
margin-bottom:10px;
}

.register-form input,
.register-form select{

padding:14px;

border:none;

border-radius:12px;

background:rgba(255,255,255,.08);

color:white;

outline:none;
}

.register-form option{
color:black;
}

.register-form button{

padding:15px;

border:none;

border-radius:12px;

font-weight:700;

cursor:pointer;

background:
linear-gradient(
90deg,
#00ffcc,
#00bfff
);

color:#00111f;

transition:.3s;
}

.register-form button:hover{
transform:translateY(-3px);
}

#mensaje{
text-align:center;
font-weight:bold;
}

.login-link{
text-align:center;
text-decoration:none;
color:#ffcc00;
}

@media(max-width:768px){

.register-container{
grid-template-columns:1fr;
}

.logo-area{
padding:30px;
}

.logo-area h1{
font-size:2.2rem;
}

}
#mensaje{
    margin-top:15px;
    text-align:center;
    font-weight:600;
    font-size:1rem;
    min-height:25px;
}