/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* ================================================
   Junisis Händlerportal – Password Form Styling
   ================================================ */

.jn-wrap {
    min-height: 520px;
    background: #0d0d0f;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.jn-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.jn-accent {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 260px;
    background: radial-gradient(ellipse at center, rgba(59,130,246,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.jn-card {
    position: relative;
    background: #141418;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    z-index: 1;
}

.jn-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.75rem;
}

.jn-logo-icon {
    width: 36px;
    height: 36px;
    background: #1a1a2e;
    border: 1px solid rgba(99,179,237,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #63b3ed;
    flex-shrink: 0;
}

.jn-brand {
    font-size: 15px;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 0.03em;
}

.jn-badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(99,179,237,0.1);
    color: #63b3ed;
    border: 1px solid rgba(99,179,237,0.25);
    border-radius: 20px;
    padding: 3px 10px;
    white-space: nowrap;
}

.jn-heading {
    font-size: 22px;
    font-weight: 600;
    color: #f7fafc;
    margin: 0 0 0.4rem 0;
}

.jn-sub {
    font-size: 13px;
    color: #718096;
    margin: 0 0 1.75rem 0;
    line-height: 1.6;
}

.jn-field {
    margin-bottom: 1.25rem;
}

.jn-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #a0aec0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.jn-input-wrap {
    position: relative;
}

.jn-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #4a5568;
    pointer-events: none;
}

.jn-input {
    width: 100%;
    background: #0d0d0f !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 10px !important;
    padding: 11px 12px 11px 40px !important;
    font-size: 14px !important;
    color: #e2e8f0 !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.jn-input:focus {
    border-color: rgba(99,179,237,0.5) !important;
    box-shadow: 0 0 0 3px rgba(99,179,237,0.08) !important;
}

.jn-input::placeholder {
    color: #4a5568 !important;
}

.jn-btn {
    width: 100%;
    background: #1a6cb8 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
    letter-spacing: 0.01em;
}

.jn-btn:hover {
    background: #2b7de0 !important;
}

.jn-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin: 1.5rem 0 1rem;
}

.jn-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #4a5568;
}

.jn-footer svg {
    color: #4a5568;
    flex-shrink: 0;
}

/* Mobile */
@media (max-width: 480px) {
    .jn-card {
        padding: 1.75rem 1.25rem;
    }
    .jn-wrap {
        padding: 1rem;
        border-radius: 0;
    }
}