.login-wrapper{

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#20242b;

}

.login-card{

    width:420px;

    background:#2b313b;

    border:1px solid #3b4350;

    border-radius:12px;

    padding:35px;

    box-shadow:0 10px 35px rgba(0,0,0,.35);

    text-align:center;

}

.login-logo{

    width:80px;
    height:auto;

    display:block;

    margin:0 auto 15px;

}

.login-card h1{

    margin:0;

    color:#fff;

    font-size:28px;

}

.login-subtitle{

    margin:5px 0 30px;

    color:#9ea6b4;

}

.login-card form{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.login-card label{

    text-align:left;

    color:#d6d6d6;

    font-weight:600;

}

.login-card input{

    width:100%;

    padding:12px 14px;

    border-radius:8px;

    border:1px solid #485262;

    background:#1e232b;

    color:#fff;

    font-size:15px;

    outline:none;

    transition:.2s;

    box-sizing:border-box;

}

.login-card input:focus{

    border-color:#4da3ff;

}

.login-card button{

    margin-top:10px;

    padding:12px;

    border:none;

    border-radius:8px;

    background:#0078d4;

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.2s;

}

.login-card button:hover{

    background:#1d8df0;

}