/* DYM Finance Login Page */
body.login {
    background: #0f172a;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.login h1 a {
    background-image: none !important;
    text-indent: 0;
    width: auto;
    height: auto;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}
.login h1 a::before {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: #1e40af;
    border-radius: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5v14M5 12h14' stroke='white' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

#loginform {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    padding: 28px 24px;
}

#loginform label {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
}

#loginform input[type="text"],
#loginform input[type="password"] {
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #e2e8f0;
    font-size: 14px;
    padding: 10px 12px;
}
#loginform input:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30,64,175,0.2);
    background: #0f172a;
    color: #f1f5f9;
}

#loginform .forgetmenot label { color: #94a3b8; }

#wp-submit {
    background: #1e40af;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    cursor: pointer;
    transition: background 0.15s;
    text-shadow: none;
    width: 100%;
    height: auto;
    line-height: 1.4;
}
#wp-submit:hover { background: #1e3a8a; }

.login #nav,
.login #backtoblog { display: none; }

.login .message,
.login .success {
    border-left-color: #1e40af;
    background: #1e293b;
    color: #94a3b8;
    border-radius: 6px;
}

.login #login_error {
    border-left-color: #dc2626;
    background: #1e293b;
    color: #fca5a5;
    border-radius: 6px;
}

#login { width: 340px; }
