/* =========================
   Auth panel
   ========================= */

.kontaktum-mobile-only {
    display: block;
}

.kontaktum-desktop-guest-only {
    display: none;
}

.kontaktum-mobile-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    padding: 12px 0;
}

.kontaktum-mobile-panel__link {
    display: block;
    width: 100%;
    text-decoration: none;
    box-sizing: border-box;
    line-height: 1.3;
}

.kontaktum-mobile-panel__link--text {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

.kontaktum-mobile-panel__link--text:hover {
    color: #dbeafe;
}

.kontaktum-desktop-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kontaktum-desktop-auth .login-link,
.kontaktum-desktop-auth .register-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 2px solid #f97316;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.kontaktum-desktop-auth .login-link {
    background: #ffffff;
    color: #f97316;
}

.kontaktum-desktop-auth .login-link:hover,
.kontaktum-desktop-auth .login-link:focus {
    background: #fff7ed;
    border-color: #ea580c;
    color: #ea580c;
}

.kontaktum-desktop-auth .register-link {
    background: #f97316;
    color: #ffffff;
}

.kontaktum-desktop-auth .register-link:hover,
.kontaktum-desktop-auth .register-link:focus {
    background: #ea580c;
    border-color: #ea580c;
    color: #ffffff;
}

@media (min-width: 1000px) {
    .kontaktum-mobile-only {
        display: none !important;
    }

    .kontaktum-desktop-guest-only {
        display: block !important;
    }
}
