/* assets/css/login.css */

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

body{
    font-family:'Poppins', sans-serif;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;

    background:
    radial-gradient(circle at top left, #7b2ff7 0%, transparent 30%),
    radial-gradient(circle at bottom right, #f107a3 0%, transparent 30%),
    #0f0f11;

    overflow:hidden;
}

.login-container{
    width:100%;
    max-width:430px;
    padding:20px;
}

.login-card{
    background:#17171b;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    padding:45px;
    box-shadow:0 25px 60px rgba(0,0,0,0.45);
}

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

.logo img{
    width:200px;
    max-width:100%;
    height:auto;
    margin-bottom:28px;
}

.logo h1{
    color:#fff;
    font-size:34px;
    font-weight:700;
    margin-bottom:8px;
}

.logo p{
    color:#9b9b9b;
    font-size:14px;
}

.input-group{
    margin-bottom:20px;
}

.input-group input{
    width:100%;
    height:58px;
    background:#1f1f24;
    border:none;
    outline:none;
    border-radius:16px;
    padding:0 18px;
    color:#fff;
    font-size:15px;
    border:1px solid transparent;
    transition:0.3s;
}

.input-group input:focus{
    border:1px solid #a855f7;
    box-shadow:0 0 0 4px rgba(168,85,247,0.15);
}

.input-group input::placeholder{
    color:#7d7d7d;
}

button{
    width:100%;
    height:58px;
    border:none;
    border-radius:16px;

    background:linear-gradient(135deg,#7b2ff7,#f107a3);

    color:#fff;
    font-size:16px;
    font-weight:600;

    cursor:pointer;
    transition:0.3s;
}

button:hover{
    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(123,47,247,0.35);
}

.error{
    background:#ff3b3b15;
    border:1px solid #ff3b3b40;
    color:#ff8c8c;
    padding:14px;
    border-radius:14px;
    margin-bottom:20px;
    font-size:14px;
}

.login-card{

    animation:fadeUp .7s ease;
}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(25px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.version{

    margin-top:25px;

    text-align:center;

    color:#666;

    font-size:12px;

}