/* ======= css/login.css (Custom Login Page Styles) =======
/* Custom WordPress Login Styles for EasyDokan */

body.login {
    background: linear-gradient(160deg, #e8f0ff 0%, #f0f9ff 40%, #fafcff 100%) !important;
    font-family: 'Sora', 'Hind Siliguri', sans-serif;
}

#login {
    padding: 80px 0;
}

#login h1 a {
    background-image: none !important;
    text-indent: 0;
    width: auto;
    height: auto;
    font-size: 32px;
    font-weight: 800;
    color: #1d4ed8;
    text-decoration: none;
    margin-bottom: 20px;
}

#login h1 a::before {
    content: 'EasyDokan';
}

#loginform {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(29,78,216,0.12);
    border: 1px solid #e2e8f0;
}

#loginform label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    display: block;
}

#loginform input[type="text"],
#loginform input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 15px;
    font-family: inherit;
    margin-bottom: 16px;
    transition: all 0.2s;
}

#loginform input[type="text"]:focus,
#loginform input[type="password"]:focus {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29,78,216,0.08);
    outline: none;
}

#loginform input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #1d4ed8;
}

#loginform .forgetmenot {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

#wp-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 6px 20px rgba(29,78,216,0.3);
    transition: all 0.25s;
    margin-top: 20px;
}

#wp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(29,78,216,0.4);
}

#nav {
    text-align: center;
    margin-top: 24px;
}

#nav a {
    color: #1d4ed8;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

#backtoblog {
    text-align: center;
    margin-top: 16px;
}

#backtoblog a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
}