*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Segoe UI',sans-serif;

    min-height:100vh;

    background:
    radial-gradient(
        circle at top,
        #0f1c48,
        #050816
    );

    display:flex;

    justify-content:center;

    align-items:center;

    overflow-x:hidden;

    position:relative;

}

/* EFECTO ESTRELLAS */

body::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:
    radial-gradient(
        rgba(255,255,255,.15) 1px,
        transparent 1px
    );

    background-size:40px 40px;

    opacity:.25;

}

/* CONTENEDOR */

.register-wrapper{

    width:100%;

    max-width:520px;

    padding:20px;

    position:relative;

    z-index:2;

}

/* TARJETA */

.register-card{

    background:
    rgba(10,15,35,.95);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px;

    box-shadow:
    0 15px 50px rgba(0,0,0,.4);

}

/* TITULOS */

.register-title{

    color:white;

    font-size:38px;

    font-weight:700;

}

.register-subtitle{

    color:#9ca3af;

    margin-top:10px;

}

/* LABELS */

.form-label{

    color:white;

    font-size:14px;

    margin-bottom:8px;

}

/* INPUTS */

.custom-input{

    background:#0d1735;

    border:
    1px solid rgba(255,255,255,.08);

    color:white;

    height:50px;

}

.custom-input:focus{

    background:#0d1735;

    color:white;

    border-color:#8b5cf6;

    box-shadow:none;

}

.custom-input::placeholder{

    color:#6b7280;

}

/* BOTON */

.btn-register{

    width:100%;

    height:52px;

    border:none;

    border-radius:10px;

    font-weight:600;

    color:white;

    background:
    linear-gradient(
        90deg,
        #6d28d9,
        #8b5cf6
    );

    transition:.3s;

}

.btn-register:hover{

    transform:translateY(-2px);

}

/* LINK LOGIN */

.login-link{

    text-align:center;

    color:#9ca3af;

}

.login-link a{

    color:#8b5cf6;

    text-decoration:none;

    font-weight:600;

}

/* LINEA */

hr{

    border-color:
    rgba(255,255,255,.08);

    margin:25px 0;

}

/* RESPONSIVE */

@media(max-width:576px){

    .register-card{

        padding:30px;

    }

    .register-title{

        font-size:30px;

    }

}