/* ==========================================
WTW LOGIN PAGE
========================================== */

.wtw-login-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
    background:linear-gradient(
        135deg,
        #f8fafc 0%,
        #eef2ff 100%
    );
}

.wtw-login-card{
    width:100%;
    max-width:500px;
    background:#fff;
    padding:50px;
    border-radius:24px;

    border:1px solid #e2e8f0;

    box-shadow:
        0 20px 60px rgba(15,23,42,.08),
        0 8px 20px rgba(15,23,42,.04);

    text-align:center;
}

.wtw-login-logo{
    margin-bottom:25px;
}

.wtw-login-logo img{
    max-width:200px;
    height:auto;
}

.wtw-login-card h1{
    margin:0 0 10px;
    font-size:32px;
    color:#0f172a;
}

.wtw-login-card p{
    color:#64748b;
    margin-bottom:30px;
}

.wtw-login-card form{
    text-align:left;
}

.wtw-login-card label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#334155;
}

.wtw-login-card input[type="text"],
.wtw-login-card input[type="password"]{

    width:100%;
    padding:14px;
    border:1px solid #dbe2ea;
    border-radius:12px;
    margin-bottom:20px;
}

.wtw-login-card input[type="text"]:focus,
.wtw-login-card input[type="password"]:focus{

    outline:none;
    border-color:#2563eb;

    box-shadow:
        0 0 0 4px rgba(37,99,235,.12);
}

.wtw-login-card input[type="submit"]{

    width:100%;
    padding:14px;

    background:#7f35b2;
    color:#fff;

    border:none;
    border-radius:12px;

    font-weight:600;
    cursor:pointer;
}

.wtw-login-card input[type="submit"]:hover{

    transform:translateY(-1px);

    box-shadow:
        0 10px 25px rgba(37,99,235,.25);
}

.wtw-login-card .login-remember{
    margin-bottom:20px;
}