*{
    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:hidden;

}

/* FONDO */

body::before{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    background-image:
    radial-gradient(
    rgba(255,255,255,.12) 1px,
    transparent 1px);

    background-size:
    40px 40px;

    opacity:.3;

}

/* CONTENEDOR */

.login-wrapper{

    width:100%;

    max-width:500px;

    padding:20px;

    position:relative;

    z-index:2;

}

/* TARJETA */

.login-card{

    background:
    rgba(12,18,40,.95);

    border:1px solid
    rgba(255,255,255,.08);

    border-radius:20px;

    padding:45px;

    box-shadow:
    0 15px 40px
    rgba(0,0,0,.45);

}

/* LOGO */

.logo{

    color:white;

    font-weight:700;

}

.subtitle{

    color:#bdbdc7;

    margin-top:10px;

}

/* LABELS */

.form-label{

    color:white;

    font-size:14px;

}

/* INPUTS */

.custom-input{

    height:52px;

    background:#0e1735;

    border:1px solid
    rgba(255,255,255,.1);

    color:white;

}

.custom-input:focus{

    background:#0e1735;

    color:white;

    border-color:#7c3aed;

    box-shadow:none;

}

.custom-input::placeholder{

    color:#8f94a8;

}

/* OJO */

.eye-btn{

    position:absolute;

    right:15px;

    top:15px;

    cursor:pointer;

    color:#9ca3af;

}

/* BOTON */

.btn-login{

    width:100%;

    height:55px;

    border:none;

    border-radius:10px;

    font-weight:600;

    color:white;

    background:
    linear-gradient(
    90deg,
    #6d28d9,
    #8b5cf6);

    transition:.3s;

}

.btn-login:hover{

    transform:translateY(-2px);

}

/* LINKS */

.forgot-password{

    text-align:center;

    margin-top:25px;

}

.forgot-password a{

    text-decoration:none;

    color:#8b5cf6;

    font-size:14px;

}

.register-link{

    text-align:center;

    color:#bdbdc7;

}

.register-link a{

    color:#8b5cf6;

    text-decoration:none;

    font-weight:600;

}

/* RESPONSIVE */

@media(max-width:576px){

    .login-card{

        padding:30px;

    }

    .logo{

        font-size:28px;

    }

}