/* =====================================================
   LOGIN PAGE
===================================================== */

html{
    scroll-behavior:smooth;
}

.tnp-login-page{

    min-height:100vh;

    background:linear-gradient(
        180deg,
        #fafafa,
        #f3f5f9
    );

}

/* HERO */

.tnp-login-hero{

    background:linear-gradient(
        135deg,
        #111,
        #2b2b2b
    );

    color:#fff;

    text-align:center;

    padding:90px 20px 70px;

}

.tnp-login-badge{

    display:inline-block;

    background:#d60000;

    color:#fff;

    padding:8px 20px;

    border-radius:40px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.tnp-login-hero h1{

    font-size:56px;

    margin-bottom:15px;

}

.tnp-login-hero p{

    max-width:650px;

    margin:auto;

    font-size:20px;

    color:#ddd;

    line-height:1.8;

}

/* LOGIN CARD */

.tnp-login-section{

    padding:80px 20px;

}

.tnp-login-card{

    max-width:520px;

    margin:auto;

    background:#fff;

    border-radius:25px;

    padding:45px;

    box-shadow:0 20px 60px rgba(0,0,0,.10);

}

/* =====================================================
   LOGIN FORM
===================================================== */

.tnp-login-card .tnp-login-box h2{
    text-align:center;
    font-size:34px;
    margin-bottom:35px;
    color:#111;
}

.tnp-login-card .tnp-login-box form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.tnp-login-card .tnp-login-box input[type="email"],
.tnp-login-card .tnp-login-box input[type="password"]{

    width:100%;
    padding:18px 20px;
    border:2px solid #e5e5e5;
    border-radius:14px;
    background:#fafafa;
    font-size:16px;
    color:#333;
    transition:all .3s ease;
    box-sizing:border-box;

}

.tnp-login-card .tnp-login-box input[type="email"]:focus,
.tnp-login-card .tnp-login-box input[type="password"]:focus{

    outline:none;
    border-color:#d60000;
    background:#fff;
    box-shadow:0 0 0 4px rgba(214,0,0,.08);

}

.tnp-login-card .tnp-login-box label{

    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    color:#666;
    cursor:pointer;

}

.tnp-login-card .tnp-login-box button{

    width:100%;
    padding:18px;
    border:none;
    border-radius:50px;
    background:#d60000;
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:all .3s ease;

}

.tnp-login-card .tnp-login-box button:hover{

    background:#111;
    transform:translateY(-3px);

}

/* =====================================================
   AUTH LINKS
===================================================== */

.tnp-auth-options{

    margin-top:40px;

    text-align:center;

}

.tnp-auth-options p{

    margin:22px 0 10px;

    color:#666;

    font-size:15px;

}

.tnp-auth-options .tnp-btn{

    display:inline-block;

    width:100%;

    padding:15px;

    border-radius:50px;

    background:#111;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.tnp-auth-options .tnp-btn:hover{

    background:#d60000;

}
.tnp-auth-options{

    border-top:1px solid #eee;

    padding-top:35px;

}

/* =====================================================
   LOGIN ERROR
===================================================== */

.tnp-login-error{

    background:#fdecec;

    color:#b00020;

    border:1px solid #f5b5b5;

    padding:15px 20px;

    border-radius:12px;

    margin-bottom:25px;

    text-align:center;

    font-weight:600;

}

/* =====================================================
   SHOW PASSWORD
===================================================== */

.tnp-show-password{

    display:flex;

    align-items:center;

    gap:10px;

    margin-top:-5px;

    margin-bottom:10px;

    color:#666;

    font-size:15px;

}

.tnp-show-password input{

    width:18px;

    height:18px;

}