/* ==========================
   SWEET CAKE - ESTILO ASIÁTICO ELEGANTE
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;

    background:
    linear-gradient(
        135deg,
        #1E1033,
        #3C1F5E,
        #5B2C83,
        #8C52C9
    );
}

/* TARJETA PRINCIPAL */

.login-container{

    width:430px;

    padding:50px 40px;

    background:rgba(255,255,255,0.96);

    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.25);

    position:relative;

    overflow:hidden;
}

/* DETALLES DECORATIVOS */

.login-container::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:rgba(140,82,201,.12);

    border-radius:50%;

    top:-80px;
    right:-80px;
}

.login-container::after{

    content:"";

    position:absolute;

    width:150px;
    height:150px;

    background:rgba(91,44,131,.10);

    border-radius:50%;

    bottom:-70px;
    left:-70px;
}

/* LOGO */

#logo{
    text-align:center;
    margin-bottom:35px;
}

#logo h1{

    font-size:3.2rem;

    color:#5B2C83;

    font-weight:300;

    letter-spacing:3px;
}

#logo p{

    margin-top:10px;

    color:#7A6992;

    font-size:14px;

    letter-spacing:1px;
}

/* FORMULARIO */

#fade-box{

    display:flex;

    flex-direction:column;

    gap:18px;
}

/* INPUTS */

input{

    width:100%;

    padding:16px;

    border:none;

    border-bottom:2px solid #DCCEF8;

    background:#FAF8FF;

    font-size:15px;

    transition:.3s;
}

input:focus{

    outline:none;

    border-bottom:2px solid #7A3FD4;

    background:#FFFFFF;
}

/* BOTÓN */

button{

    margin-top:10px;

    padding:15px;

    border:none;

    border-radius:30px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    color:white;

    background:linear-gradient(
        90deg,
        #5B2C83,
        #8C52C9
    );

    transition:.3s;
}

button:hover{

    transform:translateY(-2px);

    box-shadow:
    0 10px 25px rgba(91,44,131,.35);
}

/* DECORACIÓN ASIÁTICA */

.stark-login{

    position:relative;
}

.stark-login::before{

    content:"✿";

    position:absolute;

    top:-30px;
    left:-10px;

    color:#C8B0F5;

    font-size:40px;
}

.stark-login::after{

    content:"✿";

    position:absolute;

    bottom:-35px;
    right:-10px;

    color:#C8B0F5;

    font-size:40px;
}

/* RESPONSIVE */

@media(max-width:500px){

    .login-container{

        width:90%;

        padding:35px 25px;
    }

    #logo h1{

        font-size:2.5rem;
    }
}